Skip to content

Commit 3ea9028

Browse files
committed
add os to stdlib.go
1 parent 6c1900d commit 3ea9028

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

stdlib/stdlib.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ import (
1818
"github.com/go-python/gpython/py"
1919
"github.com/go-python/gpython/vm"
2020

21-
_ "github.com/go-python/gpython/builtin"
22-
_ "github.com/go-python/gpython/math"
23-
_ "github.com/go-python/gpython/os"
24-
_ "github.com/go-python/gpython/sys"
25-
_ "github.com/go-python/gpython/time"
21+
_ "github.com/go-python/gpython/stdlib/builtin"
22+
_ "github.com/go-python/gpython/stdlib/math"
23+
_ "github.com/go-python/gpython/stdlib/os"
24+
_ "github.com/go-python/gpython/stdlib/sys"
25+
_ "github.com/go-python/gpython/stdlib/time"
2626
)
2727

2828
func init() {

0 commit comments

Comments
 (0)