We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eddcfec commit 322d8ddCopy full SHA for 322d8dd
1 file changed
src/py_lib.rs
@@ -24,7 +24,6 @@ lazy_static! {
24
pub fn init_python() -> PyResult<()> {
25
pyo3::prepare_freethreaded_python();
26
let code = py_main_import::read_at_startup();
27
- dbg!(&code);
28
let c_code = CString::new(code).expect("error loading python");
29
marker::Python::with_gil(|py| -> PyResult<()> {
30
let globals = GLOBALS.lock().unwrap().clone_ref(py).into_bound(py);
0 commit comments