Skip to content

Commit 739246d

Browse files
committed
all: move marshal to stdlib/marshal
Signed-off-by: Sebastien Binet <[email protected]>
1 parent 6db2137 commit 739246d

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

Diff for: compile/legacy.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"os/exec"
1212
"strings"
1313

14-
"github.com/go-python/gpython/marshal"
1514
"github.com/go-python/gpython/py"
15+
"github.com/go-python/gpython/stdlib/marshal"
1616
)
1717

1818
// Compile with python3.4 - not used any more but keep for the moment!
File renamed without changes.

Diff for: stdlib/stdlib.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"strings"
1515
"sync"
1616

17-
"github.com/go-python/gpython/marshal"
1817
"github.com/go-python/gpython/py"
18+
"github.com/go-python/gpython/stdlib/marshal"
1919
"github.com/go-python/gpython/vm"
2020

2121
_ "github.com/go-python/gpython/stdlib/builtin"

0 commit comments

Comments
 (0)