Skip to content

Commit

Permalink
all: move gpython py-modules under stdlib
Browse files Browse the repository at this point in the history
  • Loading branch information
sbinet committed Mar 23, 2022
1 parent 9281622 commit eb9dc4c
Show file tree
Hide file tree
Showing 15 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ cover.out
/dist

# tests
builtin/testfile
examples/embedding/embedding
stdlib/builtin/testfile
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.
8 changes: 4 additions & 4 deletions stdlib/stdlib.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
"github.com/go-python/gpython/py"
"github.com/go-python/gpython/vm"

_ "github.com/go-python/gpython/builtin"
_ "github.com/go-python/gpython/math"
_ "github.com/go-python/gpython/sys"
_ "github.com/go-python/gpython/time"
_ "github.com/go-python/gpython/stdlib/builtin"
_ "github.com/go-python/gpython/stdlib/math"
_ "github.com/go-python/gpython/stdlib/sys"
_ "github.com/go-python/gpython/stdlib/time"
)

func init() {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit eb9dc4c

Please sign in to comment.