gitextract_jnohosl3/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.md │ ├── actions/ │ │ └── fetch-merge-base/ │ │ └── action.yml │ ├── dependabot.yml │ ├── pull_request_template.md │ └── workflows/ │ ├── benches.yml │ ├── build.yml │ ├── cache-cleanup.yml │ ├── changelog.yml │ ├── ci-cache-warmup.yml │ ├── ci.yml │ ├── coverage-pr-base.yml │ ├── netlify-build.yml │ ├── netlify-deploy.yml │ └── release.yml ├── .gitignore ├── .netlify/ │ ├── internal_banner.html │ └── redirect.sh ├── .towncrier.template.md ├── Architecture.md ├── CHANGELOG.md ├── CITATION.cff ├── Cargo.toml ├── Code-of-Conduct.md ├── Contributing.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── Releasing.md ├── assets/ │ └── script.py ├── build.rs ├── codecov.yml ├── emscripten/ │ ├── .gitignore │ ├── Makefile │ └── runner.py ├── examples/ │ ├── Cargo.toml │ ├── README.md │ ├── decorator/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── pre-script.rhai │ │ │ └── pyproject.toml │ │ ├── Cargo.toml │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cargo-generate.toml │ │ ├── noxfile.py │ │ ├── pyproject.toml │ │ ├── src/ │ │ │ └── lib.rs │ │ └── tests/ │ │ ├── example.py │ │ └── test_.py │ ├── getitem/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── pre-script.rhai │ │ │ └── pyproject.toml │ │ ├── Cargo.toml │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cargo-generate.toml │ │ ├── noxfile.py │ │ ├── pyproject.toml │ │ ├── src/ │ │ │ └── lib.rs │ │ └── tests/ │ │ └── test_getitem.py │ ├── maturin-starter/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── pre-script.rhai │ │ │ └── pyproject.toml │ │ ├── Cargo.toml │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cargo-generate.toml │ │ ├── maturin_starter/ │ │ │ └── __init__.py │ │ ├── noxfile.py │ │ ├── pyproject.toml │ │ ├── src/ │ │ │ ├── lib.rs │ │ │ └── submodule.rs │ │ └── tests/ │ │ ├── test_maturin_starter.py │ │ └── test_submodule.py │ ├── plugin/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── plugin_api/ │ │ │ │ └── Cargo.toml │ │ │ └── pre-script.rhai │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── cargo-generate.toml │ │ ├── plugin_api/ │ │ │ ├── Cargo.toml │ │ │ ├── noxfile.py │ │ │ ├── pyproject.toml │ │ │ ├── src/ │ │ │ │ └── lib.rs │ │ │ └── tests/ │ │ │ ├── test_Gadget.py │ │ │ └── test_import.py │ │ ├── python_plugin/ │ │ │ ├── gadget_init_plugin.py │ │ │ └── rng.py │ │ └── src/ │ │ └── main.rs │ ├── setuptools-rust-starter/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── pre-script.rhai │ │ │ └── setup.cfg │ │ ├── Cargo.toml │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── cargo-generate.toml │ │ ├── noxfile.py │ │ ├── pyproject.toml │ │ ├── requirements-dev.txt │ │ ├── setuptools_rust_starter/ │ │ │ └── __init__.py │ │ ├── src/ │ │ │ ├── lib.rs │ │ │ └── submodule.rs │ │ └── tests/ │ │ ├── test_setuptools_rust_starter.py │ │ └── test_submodule.py │ └── word-count/ │ ├── .template/ │ │ ├── Cargo.toml │ │ ├── pre-script.rhai │ │ └── pyproject.toml │ ├── Cargo.toml │ ├── MANIFEST.in │ ├── README.md │ ├── cargo-generate.toml │ ├── noxfile.py │ ├── pyproject.toml │ ├── src/ │ │ └── lib.rs │ ├── tests/ │ │ └── test_word_count.py │ └── word_count/ │ └── __init__.py ├── guide/ │ ├── book.toml │ ├── pyclass-parameters.md │ ├── pyo3_version.py │ ├── src/ │ │ ├── SUMMARY.md │ │ ├── advanced.md │ │ ├── async-await.md │ │ ├── building-and-distribution/ │ │ │ └── multiple-python-versions.md │ │ ├── building-and-distribution.md │ │ ├── changelog.md │ │ ├── class/ │ │ │ ├── call.md │ │ │ ├── numeric.md │ │ │ ├── object.md │ │ │ ├── protocols.md │ │ │ └── thread-safety.md │ │ ├── class.md │ │ ├── contributing.md │ │ ├── conversions/ │ │ │ ├── tables.md │ │ │ └── traits.md │ │ ├── conversions.md │ │ ├── debugging.md │ │ ├── ecosystem/ │ │ │ ├── async-await.md │ │ │ ├── logging.md │ │ │ └── tracing.md │ │ ├── ecosystem.md │ │ ├── exception.md │ │ ├── faq.md │ │ ├── features.md │ │ ├── free-threading.md │ │ ├── function/ │ │ │ ├── error-handling.md │ │ │ └── signature.md │ │ ├── function-calls.md │ │ ├── function.md │ │ ├── getting-started.md │ │ ├── index.md │ │ ├── migration.md │ │ ├── module.md │ │ ├── parallelism.md │ │ ├── performance.md │ │ ├── python-from-rust/ │ │ │ ├── calling-existing-code.md │ │ │ └── function-calls.md │ │ ├── python-from-rust.md │ │ ├── python-typing-hints.md │ │ ├── rust-from-python.md │ │ ├── trait-bounds.md │ │ ├── type-stub.md │ │ └── types.md │ └── theme/ │ ├── tabs.css │ └── tabs.js ├── newsfragments/ │ ├── .gitignore │ ├── 5349.added.md │ ├── 5349.changed.md │ ├── 5668.added.md │ ├── 5668.fixed.md │ ├── 5668.removed.md │ ├── 5753.changed.md │ ├── 5770.added.md │ ├── 5782.added.md │ ├── 5797.changed.md │ ├── 5803.changed.md │ ├── 5809.packaging.md │ ├── 5824.changed.md │ ├── 5828.added.md │ ├── 5830.changed.md │ ├── 5837.fixed.md │ ├── 5839.changed.md │ ├── 5841.changed.md │ ├── 5847.fixed.md │ ├── 5849.added.md │ ├── 5857.added.md │ ├── 5865.packaging.md │ ├── 5866.changed.md │ ├── 5883.changed.md │ ├── 5887.added.md │ ├── 5891.added.md │ ├── 5893.removed.md │ ├── 5896.changed.md │ └── 5897.changed.md ├── noxfile.py ├── pyo3-benches/ │ ├── Cargo.toml │ ├── benches/ │ │ ├── bench_any.rs │ │ ├── bench_attach.rs │ │ ├── bench_bigint.rs │ │ ├── bench_call.rs │ │ ├── bench_comparisons.rs │ │ ├── bench_critical_sections.rs │ │ ├── bench_decimal.rs │ │ ├── bench_dict.rs │ │ ├── bench_err.rs │ │ ├── bench_extract.rs │ │ ├── bench_frompyobject.rs │ │ ├── bench_intern.rs │ │ ├── bench_intopyobject.rs │ │ ├── bench_list.rs │ │ ├── bench_py.rs │ │ ├── bench_pyclass.rs │ │ ├── bench_pystring_from_fmt.rs │ │ ├── bench_set.rs │ │ └── bench_tuple.rs │ └── build.rs ├── pyo3-build-config/ │ ├── Cargo.toml │ ├── build.rs │ └── src/ │ ├── errors.rs │ ├── impl_.rs │ └── lib.rs ├── pyo3-ffi/ │ ├── ACKNOWLEDGEMENTS │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── examples/ │ │ ├── README.md │ │ ├── sequential/ │ │ │ ├── .template/ │ │ │ │ ├── Cargo.toml │ │ │ │ ├── pre-script.rhai │ │ │ │ └── pyproject.toml │ │ │ ├── Cargo.toml │ │ │ ├── MANIFEST.in │ │ │ ├── README.md │ │ │ ├── build.rs │ │ │ ├── cargo-generate.toml │ │ │ ├── noxfile.py │ │ │ ├── pyproject.toml │ │ │ ├── src/ │ │ │ │ ├── id.rs │ │ │ │ ├── lib.rs │ │ │ │ └── module.rs │ │ │ └── tests/ │ │ │ ├── test.rs │ │ │ └── test_.py │ │ └── string-sum/ │ │ ├── .template/ │ │ │ ├── Cargo.toml │ │ │ ├── pre-script.rhai │ │ │ └── pyproject.toml │ │ ├── Cargo.toml │ │ ├── MANIFEST.in │ │ ├── README.md │ │ ├── build.rs │ │ ├── cargo-generate.toml │ │ ├── noxfile.py │ │ ├── pyproject.toml │ │ ├── src/ │ │ │ └── lib.rs │ │ └── tests/ │ │ └── test_.py │ └── src/ │ ├── abstract_.rs │ ├── bltinmodule.rs │ ├── boolobject.rs │ ├── bytearrayobject.rs │ ├── bytesobject.rs │ ├── ceval.rs │ ├── codecs.rs │ ├── compat/ │ │ ├── mod.rs │ │ ├── py_3_10.rs │ │ ├── py_3_13.rs │ │ ├── py_3_14.rs │ │ ├── py_3_15.rs │ │ └── py_3_9.rs │ ├── compile.rs │ ├── complexobject.rs │ ├── context.rs │ ├── cpython/ │ │ ├── abstract_.rs │ │ ├── bytesobject.rs │ │ ├── ceval.rs │ │ ├── code.rs │ │ ├── compile.rs │ │ ├── complexobject.rs │ │ ├── critical_section.rs │ │ ├── descrobject.rs │ │ ├── dictobject.rs │ │ ├── floatobject.rs │ │ ├── frameobject.rs │ │ ├── funcobject.rs │ │ ├── genobject.rs │ │ ├── import.rs │ │ ├── initconfig.rs │ │ ├── listobject.rs │ │ ├── lock.rs │ │ ├── longobject.rs │ │ ├── methodobject.rs │ │ ├── mod.rs │ │ ├── object.rs │ │ ├── objimpl.rs │ │ ├── pydebug.rs │ │ ├── pyerrors.rs │ │ ├── pyframe.rs │ │ ├── pyhash.rs │ │ ├── pylifecycle.rs │ │ ├── pymem.rs │ │ ├── pystate.rs │ │ ├── pythonrun.rs │ │ ├── tupleobject.rs │ │ ├── unicodeobject.rs │ │ └── weakrefobject.rs │ ├── datetime.rs │ ├── descrobject.rs │ ├── dictobject.rs │ ├── enumobject.rs │ ├── fileobject.rs │ ├── fileutils.rs │ ├── floatobject.rs │ ├── genericaliasobject.rs │ ├── impl_/ │ │ ├── macros.rs │ │ └── mod.rs │ ├── import.rs │ ├── intrcheck.rs │ ├── iterobject.rs │ ├── lib.rs │ ├── listobject.rs │ ├── longobject.rs │ ├── marshal.rs │ ├── memoryobject.rs │ ├── methodobject.rs │ ├── modsupport.rs │ ├── moduleobject.rs │ ├── object.rs │ ├── objimpl.rs │ ├── osmodule.rs │ ├── pyarena.rs │ ├── pybuffer.rs │ ├── pycapsule.rs │ ├── pyerrors.rs │ ├── pyframe.rs │ ├── pyhash.rs │ ├── pylifecycle.rs │ ├── pymem.rs │ ├── pyport.rs │ ├── pystate.rs │ ├── pystrtod.rs │ ├── pythonrun.rs │ ├── pytypedefs.rs │ ├── rangeobject.rs │ ├── refcount.rs │ ├── setobject.rs │ ├── sliceobject.rs │ ├── structmember.rs │ ├── structseq.rs │ ├── sysmodule.rs │ ├── traceback.rs │ ├── tupleobject.rs │ ├── typeslots.rs │ ├── unicodeobject.rs │ ├── warnings.rs │ └── weakrefobject.rs ├── pyo3-ffi-check/ │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── macro/ │ │ ├── Cargo.toml │ │ └── src/ │ │ └── lib.rs │ ├── src/ │ │ └── main.rs │ └── wrapper.h ├── pyo3-introspection/ │ ├── Cargo.toml │ ├── src/ │ │ ├── introspection.rs │ │ ├── lib.rs │ │ ├── model.rs │ │ └── stubs.rs │ └── tests/ │ └── test.rs ├── pyo3-macros/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs ├── pyo3-macros-backend/ │ ├── Cargo.toml │ └── src/ │ ├── attributes.rs │ ├── combine_errors.rs │ ├── derive_attributes.rs │ ├── frompyobject.rs │ ├── intopyobject.rs │ ├── introspection.rs │ ├── konst.rs │ ├── lib.rs │ ├── method.rs │ ├── module.rs │ ├── params.rs │ ├── py_expr.rs │ ├── pyclass.rs │ ├── pyfunction/ │ │ └── signature.rs │ ├── pyfunction.rs │ ├── pyimpl.rs │ ├── pymethod.rs │ ├── quotes.rs │ └── utils.rs ├── pyo3-runtime/ │ ├── README.md │ ├── pyproject.toml │ ├── src/ │ │ └── pyo3_runtime/ │ │ └── __init__.py │ └── tests/ │ └── __init__.py ├── pyproject.toml ├── pytests/ │ ├── Cargo.toml │ ├── MANIFEST.in │ ├── MODULE_DOC.md │ ├── README.md │ ├── build.rs │ ├── conftest.py │ ├── noxfile.py │ ├── pyproject.toml │ ├── src/ │ │ ├── awaitable.rs │ │ ├── buf_and_str.rs │ │ ├── comparisons.rs │ │ ├── consts.rs │ │ ├── datetime.rs │ │ ├── dict_iter.rs │ │ ├── enums.rs │ │ ├── exception.rs │ │ ├── lib.rs │ │ ├── misc.rs │ │ ├── objstore.rs │ │ ├── othermod.rs │ │ ├── path.rs │ │ ├── pyclasses.rs │ │ ├── pyfunctions.rs │ │ ├── sequence.rs │ │ └── subclassing.rs │ ├── stubs/ │ │ ├── __init__.pyi │ │ ├── awaitable.pyi │ │ ├── buf_and_str.pyi │ │ ├── comparisons.pyi │ │ ├── consts.pyi │ │ ├── datetime.pyi │ │ ├── dict_iter.pyi │ │ ├── enums.pyi │ │ ├── exception.pyi │ │ ├── misc.pyi │ │ ├── objstore.pyi │ │ ├── othermod.pyi │ │ ├── path.pyi │ │ ├── pyclasses.pyi │ │ ├── pyfunctions.pyi │ │ ├── sequence.pyi │ │ └── subclassing.pyi │ └── tests/ │ ├── test_awaitable.py │ ├── test_buf_and_str.py │ ├── test_comparisons.py │ ├── test_datetime.py │ ├── test_dict_iter.py │ ├── test_enums.py │ ├── test_enums_match.py │ ├── test_hammer_attaching_in_thread.py │ ├── test_misc.py │ ├── test_objstore.py │ ├── test_othermod.py │ ├── test_path.py │ ├── test_pyclasses.py │ ├── test_pyfunctions.py │ ├── test_sequence.py │ └── test_subclassing.py ├── src/ │ ├── buffer.rs │ ├── byteswriter.rs │ ├── call.rs │ ├── conversion.rs │ ├── conversions/ │ │ ├── anyhow.rs │ │ ├── bigdecimal.rs │ │ ├── bytes.rs │ │ ├── chrono.rs │ │ ├── chrono_tz.rs │ │ ├── either.rs │ │ ├── eyre.rs │ │ ├── hashbrown.rs │ │ ├── indexmap.rs │ │ ├── jiff.rs │ │ ├── mod.rs │ │ ├── num_bigint.rs │ │ ├── num_complex.rs │ │ ├── num_rational.rs │ │ ├── ordered_float.rs │ │ ├── rust_decimal.rs │ │ ├── serde.rs │ │ ├── smallvec.rs │ │ ├── std/ │ │ │ ├── array.rs │ │ │ ├── cell.rs │ │ │ ├── cstring.rs │ │ │ ├── ipaddr.rs │ │ │ ├── map.rs │ │ │ ├── mod.rs │ │ │ ├── num.rs │ │ │ ├── option.rs │ │ │ ├── osstr.rs │ │ │ ├── path.rs │ │ │ ├── set.rs │ │ │ ├── slice.rs │ │ │ ├── string.rs │ │ │ ├── time.rs │ │ │ └── vec.rs │ │ ├── time.rs │ │ └── uuid.rs │ ├── coroutine/ │ │ ├── cancel.rs │ │ └── waker.rs │ ├── coroutine.rs │ ├── err/ │ │ ├── cast_error.rs │ │ ├── downcast_error.rs │ │ ├── err_state.rs │ │ ├── impls.rs │ │ └── mod.rs │ ├── exceptions.rs │ ├── ffi/ │ │ ├── mod.rs │ │ └── tests.rs │ ├── ffi_ptr_ext.rs │ ├── fmt.rs │ ├── impl_/ │ │ ├── callback.rs │ │ ├── concat.rs │ │ ├── coroutine.rs │ │ ├── deprecated.rs │ │ ├── exceptions.rs │ │ ├── extract_argument.rs │ │ ├── freelist.rs │ │ ├── frompyobject.rs │ │ ├── introspection.rs │ │ ├── panic.rs │ │ ├── pycell.rs │ │ ├── pyclass/ │ │ │ ├── assertions.rs │ │ │ ├── doc.rs │ │ │ ├── lazy_type_object.rs │ │ │ └── probes.rs │ │ ├── pyclass.rs │ │ ├── pyclass_init.rs │ │ ├── pyfunction.rs │ │ ├── pymethods.rs │ │ ├── pymodule.rs │ │ ├── trampoline.rs │ │ ├── unindent.rs │ │ └── wrap.rs │ ├── impl_.rs │ ├── inspect.rs │ ├── instance.rs │ ├── internal/ │ │ ├── get_slot.rs │ │ └── state.rs │ ├── internal.rs │ ├── internal_tricks.rs │ ├── interpreter_lifecycle.rs │ ├── lib.rs │ ├── macros.rs │ ├── marker.rs │ ├── marshal.rs │ ├── panic.rs │ ├── prelude.rs │ ├── py_result_ext.rs │ ├── pybacked.rs │ ├── pycell/ │ │ └── impl_.rs │ ├── pycell.rs │ ├── pyclass/ │ │ ├── create_type_object.rs │ │ ├── gc.rs │ │ └── guard.rs │ ├── pyclass.rs │ ├── pyclass_init.rs │ ├── sealed.rs │ ├── sync/ │ │ ├── critical_section.rs │ │ └── once_lock.rs │ ├── sync.rs │ ├── test_utils.rs │ ├── tests/ │ │ ├── hygiene/ │ │ │ ├── misc.rs │ │ │ ├── mod.rs │ │ │ ├── pyclass.rs │ │ │ ├── pyfunction.rs │ │ │ ├── pymethods.rs │ │ │ └── pymodule.rs │ │ └── mod.rs │ ├── type_object.rs │ ├── types/ │ │ ├── any.rs │ │ ├── boolobject.rs │ │ ├── bytearray.rs │ │ ├── bytes.rs │ │ ├── capsule.rs │ │ ├── code.rs │ │ ├── complex.rs │ │ ├── datetime.rs │ │ ├── dict.rs │ │ ├── ellipsis.rs │ │ ├── float.rs │ │ ├── frame.rs │ │ ├── frozenset.rs │ │ ├── function.rs │ │ ├── genericalias.rs │ │ ├── iterator.rs │ │ ├── list.rs │ │ ├── mapping.rs │ │ ├── mappingproxy.rs │ │ ├── memoryview.rs │ │ ├── mod.rs │ │ ├── module.rs │ │ ├── mutex.rs │ │ ├── none.rs │ │ ├── notimplemented.rs │ │ ├── num.rs │ │ ├── pysuper.rs │ │ ├── range.rs │ │ ├── sequence.rs │ │ ├── set.rs │ │ ├── slice.rs │ │ ├── string.rs │ │ ├── traceback.rs │ │ ├── tuple.rs │ │ ├── typeobject.rs │ │ └── weakref/ │ │ ├── anyref.rs │ │ ├── mod.rs │ │ ├── proxy.rs │ │ └── reference.rs │ └── version.rs └── tests/ ├── test_anyhow.rs ├── test_append_to_inittab.rs ├── test_arithmetics.rs ├── test_buffer.rs ├── test_buffer_protocol.rs ├── test_bytes.rs ├── test_class_attributes.rs ├── test_class_basics.rs ├── test_class_comparisons.rs ├── test_class_conversion.rs ├── test_class_formatting.rs ├── test_class_init.rs ├── test_class_new.rs ├── test_compile_error.rs ├── test_coroutine.rs ├── test_datetime.rs ├── test_datetime_import.rs ├── test_declarative_module.rs ├── test_default_impls.rs ├── test_enum.rs ├── test_exceptions.rs ├── test_field_cfg.rs ├── test_frompy_intopy_roundtrip.rs ├── test_frompyobject.rs ├── test_gc.rs ├── test_getter_setter.rs ├── test_inheritance.rs ├── test_intopyobject.rs ├── test_macro_docs.rs ├── test_macros.rs ├── test_mapping.rs ├── test_methods.rs ├── test_module.rs ├── test_multiple_pymethods.rs ├── test_proto_methods.rs ├── test_pybuffer_drop_without_interpreter.rs ├── test_pyerr_debug_unformattable.rs ├── test_pyfunction.rs ├── test_pyself.rs ├── test_sequence.rs ├── test_serde.rs ├── test_static_slots.rs ├── test_string.rs ├── test_super.rs ├── test_text_signature.rs ├── test_utils/ │ └── mod.rs ├── test_variable_arguments.rs ├── test_various.rs └── ui/ ├── abi3_dict.rs ├── abi3_dict.stderr ├── abi3_inheritance.rs ├── abi3_inheritance.stderr ├── abi3_nativetype_inheritance.rs ├── abi3_nativetype_inheritance.stderr ├── abi3_weakref.rs ├── abi3_weakref.stderr ├── ambiguous_associated_items.rs ├── deprecated_pyfn.rs ├── deprecated_pyfn.stderr ├── duplicate_pymodule_submodule.rs ├── duplicate_pymodule_submodule.stderr ├── empty.rs ├── forbid_unsafe.rs ├── get_set_all.rs ├── get_set_all.stderr ├── immutable_type.rs ├── immutable_type.stderr ├── invalid_annotation.rs ├── invalid_annotation.stderr ├── invalid_annotation_return.rs ├── invalid_annotation_return.stderr ├── invalid_argument_attributes.rs ├── invalid_argument_attributes.stderr ├── invalid_async.rs ├── invalid_async.stderr ├── invalid_base_class.rs ├── invalid_base_class.stderr ├── invalid_cancel_handle.rs ├── invalid_cancel_handle.stderr ├── invalid_closure.rs ├── invalid_closure.stderr ├── invalid_frompy_derive.rs ├── invalid_frompy_derive.stderr ├── invalid_frozen_pyclass_borrow.rs ├── invalid_frozen_pyclass_borrow.stderr ├── invalid_intern_arg.rs ├── invalid_intern_arg.stderr ├── invalid_intopy_derive.rs ├── invalid_intopy_derive.stderr ├── invalid_intopy_with.rs ├── invalid_intopy_with.stderr ├── invalid_property_args.rs ├── invalid_property_args.stderr ├── invalid_proto_pymethods.rs ├── invalid_proto_pymethods.stderr ├── invalid_pycallargs.rs ├── invalid_pycallargs.stderr ├── invalid_pyclass_args.rs ├── invalid_pyclass_args.stderr ├── invalid_pyclass_doc.rs ├── invalid_pyclass_doc.stderr ├── invalid_pyclass_enum.rs ├── invalid_pyclass_enum.stderr ├── invalid_pyclass_generic.rs ├── invalid_pyclass_generic.stderr ├── invalid_pyclass_init.rs ├── invalid_pyclass_init.stderr ├── invalid_pyclass_item.rs ├── invalid_pyclass_item.stderr ├── invalid_pyfunction_argument.rs ├── invalid_pyfunction_argument.stderr ├── invalid_pyfunction_definition.rs ├── invalid_pyfunction_definition.stderr ├── invalid_pyfunction_signatures.rs ├── invalid_pyfunction_signatures.stderr ├── invalid_pyfunction_warn.rs ├── invalid_pyfunction_warn.stderr ├── invalid_pyfunctions.rs ├── invalid_pyfunctions.stderr ├── invalid_pymethod_enum.rs ├── invalid_pymethod_enum.stderr ├── invalid_pymethod_names.rs ├── invalid_pymethod_names.stderr ├── invalid_pymethod_receiver.rs ├── invalid_pymethod_receiver.stderr ├── invalid_pymethods.rs ├── invalid_pymethods.stderr ├── invalid_pymethods_buffer.rs ├── invalid_pymethods_buffer.stderr ├── invalid_pymethods_duplicates.rs ├── invalid_pymethods_duplicates.stderr ├── invalid_pymethods_warn.rs ├── invalid_pymethods_warn.stderr ├── invalid_pymodule_args.rs ├── invalid_pymodule_args.stderr ├── invalid_pymodule_glob.rs ├── invalid_pymodule_glob.stderr ├── invalid_pymodule_in_root.rs ├── invalid_pymodule_in_root.stderr ├── invalid_pymodule_trait.rs ├── invalid_pymodule_trait.stderr ├── invalid_pymodule_two_pymodule_init.rs ├── invalid_pymodule_two_pymodule_init.stderr ├── invalid_result_conversion.rs ├── invalid_result_conversion.stderr ├── missing_intopy.rs ├── missing_intopy.stderr ├── not_send.rs ├── not_send.stderr ├── not_send2.rs ├── not_send2.stderr ├── pyclass_generic_enum.rs ├── pyclass_generic_enum.stderr ├── pyclass_probe.rs ├── pyclass_send.rs ├── pyclass_send.stderr ├── pymodule_missing_docs.rs ├── reject_generics.rs ├── reject_generics.stderr ├── static_ref.rs ├── static_ref.stderr ├── traverse.rs ├── traverse.stderr ├── wrong_aspyref_lifetimes.rs └── wrong_aspyref_lifetimes.stderr