8000 formatting · RustPython/RustPython@53065e4 · GitHub
[go: up one dir, main page]

Skip to content

Commit 53065e4

Browse files
committed
formatting
Signed-off-by: Ashwin Naren <arihant2math@gmail.com>
1 parent 75afbc8 commit 53065e4

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

vm/src/stdlib/sys.rs

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,24 @@ pub(crate) use sys::{UnraisableHookArgs, __module_def, DOC, MAXSIZE, MULTIARCH};
44

55
#[pymodule]
66
mod sys {
7-
use crate::{builtins::{
8-
PyBaseExceptionRef, PyDictRef, PyNamespace, PyStr, PyStrRef, PyTupleRef, PyTypeRef,
9-
}, common::{
10-
ascii,
11-
hash::{PyHash, PyUHash},
12-
}, compiler, convert::ToPyObject, frame::FrameRef, function::{FuncArgs, OptionalArg, PosArgs}, stdlib::{builtins, warnings::warn}, types::PyStructSequence, version, vm::{Settings, VirtualMachine}, AsObject, PyObject, PyObjectRef, PyRef, PyRefExact, PyResult};
7+
use crate::{
8+
builtins::{
9+
PyBaseExceptionRef, PyDictRef, PyNamespace, PyStr, PyStrRef, PyTupleRef, PyTypeRef,
10+
},
11+
common::{
12+
ascii,
13+
hash::{PyHash, PyUHash},
14+
},
15+
compiler,
16+
convert::ToPyObject,
17+
frame::FrameRef,
18+
function::{FuncArgs, OptionalArg, PosArgs},
19+
stdlib::{builtins, warnings::warn},
20+
types::PyStructSequence,
21+
version,
22+
vm::{Settings, VirtualMachine},
23+
AsObject, PyObject, PyObjectRef, PyRef, PyRefExact, PyResult,
24+
};
1325
use num_traits::ToPrimitive;
1426
use std::{
1527
env::{self, VarError},

0 commit comments

Comments
 (0)
0