gitextract_n9_1d35r/ ├── .cargo/ │ └── config.toml ├── .github/ │ ├── dependabot.yml │ ├── release-drafter.yml │ └── workflows/ │ ├── build.yml │ ├── release-drafter.yml │ └── update_python_test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── Cargo.toml ├── LICENSE ├── README.md ├── SECURITY.md ├── build.rs ├── ci/ │ ├── Vagrantfile │ ├── publish_freebsd.sh │ ├── test_freebsd.sh │ ├── testdata/ │ │ ├── cython_test.c │ │ └── cython_test.pyx │ └── update_python_test_versions.py ├── examples/ │ └── dump_traces.rs ├── generate_bindings.py ├── pyproject.toml ├── setup.cfg ├── src/ │ ├── binary_parser.rs │ ├── chrometrace.rs │ ├── config.rs │ ├── console_viewer.rs │ ├── coredump.rs │ ├── cython.rs │ ├── dump.rs │ ├── flamegraph.rs │ ├── lib.rs │ ├── main.rs │ ├── native_stack_trace.rs │ ├── python_bindings/ │ │ ├── mod.rs │ │ ├── v2_7_15.rs │ │ ├── v3_10_0.rs │ │ ├── v3_11_0.rs │ │ ├── v3_12_0.rs │ │ ├── v3_13_0.rs │ │ ├── v3_3_7.rs │ │ ├── v3_4_8.rs │ │ ├── v3_5_5.rs │ │ ├── v3_6_6.rs │ │ ├── v3_7_0.rs │ │ ├── v3_8_0.rs │ │ └── v3_9_5.rs │ ├── python_data_access.rs │ ├── python_interpreters.rs │ ├── python_process_info.rs │ ├── python_spy.rs │ ├── python_threading.rs │ ├── sampler.rs │ ├── speedscope.rs │ ├── stack_trace.rs │ ├── timer.rs │ ├── utils.rs │ └── version.rs └── tests/ ├── integration_test.py ├── integration_test.rs └── scripts/ ├── busyloop.py ├── cyrillic.py ├── delayed_launch.sh ├── local_vars.py ├── longsleep.py ├── negative_linenumber_offsets.py ├── recursive.py ├── subprocesses.py ├── subprocesses_zombie_child.py ├── thread_names.py ├── thread_reuse.py └── unicode💩.py