pyo3 0.6.0

Bindings to Python interpreter
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]

#[cfg(not(Py_3))]
pub use crate::ffi2::*;

#[cfg(Py_3)]
pub use crate::ffi3::*;

pub use self::datetime::*;

pub(crate) mod datetime;