Skip to content

Commit 1531d19

Browse files
committed
Change sys.implementation.name to only has lowercase
1 parent 46c9141 commit 1531d19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vm/src/sysmodule.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ pub fn make_module(vm: &VirtualMachine, module: PyObjectRef, builtins: PyObjectR
200200

201201
// TODO Add crate version to this namespace
202202
let implementation = py_namespace!(vm, {
203-
"name" => ctx.new_str("RustPython".to_string()),
203+
"name" => ctx.new_str("rustpython".to_string()),
204204
"cache_tag" => ctx.new_str("rustpython-01".to_string()),
205205
});
206206

0 commit comments

Comments
 (0)