mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-09 22:49:57 +09:00
15 lines
245 B
Rust
15 lines
245 B
Rust
use super::pyobject::{Executor, PyObject, PyObjectKind, PyObjectRef};
|
|
|
|
/*
|
|
* The magic sys module.
|
|
*/
|
|
|
|
/*
|
|
* TODO:
|
|
fn mk_module(rt: &mut Executor) -> PyObjectRef {
|
|
let path = rt.new_list();
|
|
let obj = rt.new_module("sys");
|
|
obj
|
|
}
|
|
*/
|