We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent daaf9a8 commit eabc161Copy full SHA for eabc161
crates/vm/src/stdlib/codecs.rs
@@ -331,11 +331,11 @@ fn delegate_pycodecs(
331
332
#[pymodule(sub)]
333
mod _codecs_windows {
334
+ #[cfg(not(windows))]
335
+ use crate::{PyObjectRef, function::FuncArgs};
336
use crate::{PyResult, VirtualMachine};
337
#[cfg(windows)]
338
use crate::{builtins::PyStrRef, function::ArgBytesLike};
- #[cfg(not(windows))]
- use crate::{function::FuncArgs, PyObjectRef};
339
340
#[cfg(not(windows))]
341
macro_rules! delegate_pycodecs {
0 commit comments