Skip to content

Commit eae1669

Browse files
authored
Merge pull request RustPython#1409 from ChJR/feature/sys.implementation.name
Change sys.implementation.name to only has lowercase
2 parents 2a9ae1e + 1531d19 commit eae1669

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)