diff --git a/compile/legacy.go b/compile/legacy.go index 6578b18f..c5f2571e 100644 --- a/compile/legacy.go +++ b/compile/legacy.go @@ -11,8 +11,8 @@ import ( "os/exec" "strings" - "github.com/go-python/gpython/marshal" "github.com/go-python/gpython/py" + "github.com/go-python/gpython/stdlib/marshal" ) // Compile with python3.4 - not used any more but keep for the moment! diff --git a/marshal/marshal.go b/stdlib/marshal/marshal.go similarity index 100% rename from marshal/marshal.go rename to stdlib/marshal/marshal.go diff --git a/stdlib/stdlib.go b/stdlib/stdlib.go index ebe23d06..38483df1 100644 --- a/stdlib/stdlib.go +++ b/stdlib/stdlib.go @@ -14,8 +14,8 @@ import ( "strings" "sync" - "github.com/go-python/gpython/marshal" "github.com/go-python/gpython/py" + "github.com/go-python/gpython/stdlib/marshal" "github.com/go-python/gpython/vm" _ "github.com/go-python/gpython/stdlib/builtin"