d02f7c3aa5
* Removed a lot of clutter, unified some code * Started using syn::parse::Parse for pyfunction attributes * No more newlines between imports * Renamed `#[prop(get, set)]` to `#[pyo3(get, set)]` * `#[pyfunction]` now supports the same arguments as `#[pyfn()]` * Some macros now emit proper spanned errors instead of panics.
23 lines
547 B
Rust
23 lines
547 B
Rust
// Copyright (c) 2017-present PyO3 Project and Contributors
|
|
//! This crate contains the implementation of the proc macro attributes
|
|
|
|
#![recursion_limit = "1024"]
|
|
|
|
mod defs;
|
|
mod func;
|
|
mod method;
|
|
mod module;
|
|
mod pyclass;
|
|
mod pyfunction;
|
|
mod pyimpl;
|
|
mod pymethod;
|
|
mod pyproto;
|
|
mod utils;
|
|
|
|
pub use module::{add_fn_to_module, process_functions_in_module, py2_init, py3_init};
|
|
pub use pyclass::{build_py_class, PyClassArgs};
|
|
pub use pyfunction::PyFunctionAttr;
|
|
pub use pyimpl::build_py_methods;
|
|
pub use pyproto::build_py_proto;
|
|
pub use utils::get_doc;
|