Skip to content

Commit eb9dc4c

Browse files
committed
all: move gpython py-modules under stdlib
1 parent 9281622 commit eb9dc4c

15 files changed

+6
-6
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
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

Lines changed: 4 additions & 4 deletions
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)