Skip to content

Commit 9753244

Browse files
committed
Merge branch 'add-os-module' of https://github.com/glaukiol1/gpython into add-os-module
2 parents 872af44 + c39fcc7 commit 9753244

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
@@ -74,7 +74,7 @@ func getCwdb(self py.Object, args py.Tuple) (py.Object, error) {
7474
return py.Bytes([]byte(dir)), nil
7575
}
7676

77-
// change current working directory
77+
// chdir changes the current working directory to the provided path.
7878
func chdir(self py.Object, args py.Tuple) (py.Object, error) {
7979
if len(args) == 0 {
8080
return nil, py.ExceptionNewf(py.TypeError, "Missing required argument 'path' (pos 1)")

0 commit comments

Comments
 (0)