We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7ec175f + f3050d7 commit 2b2ed5aCopy full SHA for 2b2ed5a
vm/src/stdlib/sys.rs
@@ -12,7 +12,7 @@ mod sys {
12
},
13
frame::FrameRef,
14
function::{FuncArgs, OptionalArg, PosArgs},
15
- stdlib::{self, builtins},
+ stdlib::builtins,
16
types::PyStructSequence,
17
version,
18
vm::{Settings, VirtualMachine},
@@ -661,7 +661,7 @@ mod sys {
661
#[pyclass(with(PyStructSequence))]
662
impl PyThreadInfo {
663
const INFO: Self = PyThreadInfo {
664
- name: stdlib::thread::_thread::PYTHREAD_NAME,
+ name: crate::stdlib::thread::_thread::PYTHREAD_NAME,
665
/// As I know, there's only way to use lock as "Mutex" in Rust
666
/// with satisfying python document spec.
667
lock: Some("mutex+cond"),
0 commit comments