There was an error while loading. Please reload this page.
1 parent cd415c6 commit 8aea12bCopy full SHA for 8aea12b
2 files changed
vm/src/stdlib/os.rs
@@ -357,7 +357,7 @@ mod _os {
357
count: i64,
358
headers: OptionalArg<PyObjectRef>,
359
trailers: OptionalArg<PyObjectRef>,
360
- flags: OptionalArg<i32>,
+ _flags: OptionalArg<i32>,
361
vm: &VirtualMachine,
362
) -> PyResult {
363
let headers = match headers.into_option() {
vm/src/sysmodule.rs
@@ -703,7 +703,7 @@ settrace() -- set the global debug tracing function
703
704
#[cfg(windows)]
705
{
706
- let getwindowsversion = WindowsVersion::make_class(ctx);
+ let _getwindowsversion = WindowsVersion::make_class(ctx);
707
extend_module!(vm, module, {
708
"getwindowsversion" => named_function!(ctx, sys, getwindowsversion),
709
})
0 commit comments