1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
mod error;
pub mod logging;
mod server;
mod socket;
pub mod types;
#[doc(inline)]
pub use error::Error;
#[doc(inline)]
pub use logging::LogLevel;
#[doc(inline)]
pub use server::{PyApp, PyHandler};
#[doc(inline)]
pub use socket::PySocket;
#[cfg(test)]
mod tests {
use std::sync::Once;
static INIT: Once = Once::new();
pub(crate) fn initialize() {
INIT.call_once(|| {
pyo3::prepare_freethreaded_python();
});
}
}