Skip to content

Commit f3050d7

Browse files
committed
refactor: Remove stdlib::self
1 parent 7ec175f commit f3050d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vm/src/stdlib/sys.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ mod sys {
1212
},
1313
frame::FrameRef,
1414
function::{FuncArgs, OptionalArg, PosArgs},
15-
stdlib::{self, builtins},
15+
stdlib::builtins,
1616
types::PyStructSequence,
1717
version,
1818
vm::{Settings, VirtualMachine},
@@ -661,7 +661,7 @@ mod sys {
661661
#[pyclass(with(PyStructSequence))]
662662
impl PyThreadInfo {
663663
const INFO: Self = PyThreadInfo {
664-
name: stdlib::thread::_thread::PYTHREAD_NAME,
664+
name: crate::stdlib::thread::_thread::PYTHREAD_NAME,
665665
/// As I know, there's only way to use lock as "Mutex" in Rust
666666
/// with satisfying python document spec.
667667
lock: Some("mutex+cond"),

0 commit comments

Comments
 (0)