Skip to content

Commit b49a190

Browse files
glaukiol1sbinet
andauthored
Update os/os.module.go
Co-authored-by: Sebastien Binet <[email protected]>
1 parent d3ca44c commit b49a190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

os/os.module.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ func getpid(self py.Object, args py.Tuple) (py.Object, error) {
114114
return py.Int(os.Getpid()), nil
115115
}
116116

117-
// Set the environment variable named key to the string value.
117+
// putenv sets the value of an environment variable named by the key.
118118
func putenv(self py.Object, args py.Tuple) (py.Object, error) {
119119
if len(args) == 2 && objectIsString(args[0]) && objectIsString(args[1]) {
120120
_k, err := py.ReprAsString(args[0])

0 commit comments

Comments
 (0)