Skip to content

Commit e8acd73

Browse files
committedMar 23, 2022
all: move gpython py-modules under stdlib
1 parent 9281622 commit e8acd73

15 files changed

+6
-6
lines changed
 

‎.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ cover.out
1010
/dist
1111

1212
# tests
13-
builtin/testfile
14-
examples/embedding/embedding
13+
stdlib/builtin/testfile
14+
examples/embedding/embedding
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

‎stdlib/stdlib.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ 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/sys"
24-
_ "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/sys"
24+
_ "github.com/go-python/gpython/stdlib/time"
2525
)
2626

2727
func init() {
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)