mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
remove warnings from wasm build
This commit is contained in:
committed by
Jeong, YunWon
parent
0e00d2328d
commit
b7a7b6b923
@@ -11,10 +11,12 @@ pub(crate) fn make_module(vm: &VirtualMachine) -> PyRef<PyModule> {
|
||||
|
||||
#[pymodule]
|
||||
pub(crate) mod _signal {
|
||||
#[cfg(any(unix, windows))]
|
||||
use crate::{
|
||||
convert::{IntoPyException, TryFromBorrowedObject},
|
||||
signal, Py, PyObjectRef, PyResult, VirtualMachine,
|
||||
Py,
|
||||
};
|
||||
use crate::{signal, PyObjectRef, PyResult, VirtualMachine};
|
||||
use std::sync::atomic::{self, Ordering};
|
||||
|
||||
#[cfg(any(unix, windows))]
|
||||
|
||||
Reference in New Issue
Block a user