2018-04-01 13:04:45 +00:00
|
|
|
// Copyright (c) 2017-present PyO3 Project and Contributors
|
2018-05-19 15:27:26 +00:00
|
|
|
//! This crate contains the implementation of the proc macro attributes
|
2018-04-01 13:04:45 +00:00
|
|
|
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
|
2019-02-18 19:07:41 +00:00
|
|
|
mod defs;
|
2020-08-24 22:00:12 +00:00
|
|
|
mod frompy;
|
2020-05-07 19:20:34 +00:00
|
|
|
mod konst;
|
2019-02-18 19:07:41 +00:00
|
|
|
mod method;
|
|
|
|
mod module;
|
2020-08-08 07:55:08 +00:00
|
|
|
mod proto_method;
|
2019-02-18 19:07:41 +00:00
|
|
|
mod pyclass;
|
|
|
|
mod pyfunction;
|
|
|
|
mod pyimpl;
|
|
|
|
mod pymethod;
|
|
|
|
mod pyproto;
|
|
|
|
mod utils;
|
|
|
|
|
2020-08-24 22:00:12 +00:00
|
|
|
pub use frompy::build_derive_from_pyobject;
|
2019-03-22 13:07:33 +00:00
|
|
|
pub use module::{add_fn_to_module, process_functions_in_module, py_init};
|
2019-02-18 19:07:41 +00:00
|
|
|
pub use pyclass::{build_py_class, PyClassArgs};
|
2019-12-17 22:14:28 +00:00
|
|
|
pub use pyfunction::{build_py_function, PyFunctionAttr};
|
2020-07-28 10:36:21 +00:00
|
|
|
pub use pyimpl::build_py_methods;
|
2019-02-18 19:07:41 +00:00
|
|
|
pub use pyproto::build_py_proto;
|
|
|
|
pub use utils::get_doc;
|