Skip to content

Commit 2046c04

Browse files
go package to test is at rudderlabs/gopy
1 parent 9167efa commit 2046c04

File tree

16 files changed

+30
-33
lines changed

16 files changed

+30
-33
lines changed

_examples/cpkg/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ package main
99
import (
1010
"fmt"
1111

12-
"github.com/go-python/gopy/_examples/cpkg"
12+
"github.com/rudderlabs/gopy/_examples/cpkg"
1313
)
1414

1515
func main() {

_examples/funcs/funcs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package funcs
77
import (
88
"fmt"
99

10-
"github.com/go-python/gopy/_examples/cpkg"
10+
"github.com/rudderlabs/gopy/_examples/cpkg"
1111
)
1212

1313
type FunStruct struct {

_examples/hi/hi.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ package hi
88
import (
99
"fmt"
1010

11-
"github.com/go-python/gopy/_examples/cpkg"
12-
"github.com/go-python/gopy/_examples/structs"
11+
"github.com/rudderlabs/gopy/_examples/cpkg"
12+
"github.com/rudderlabs/gopy/_examples/structs"
1313
)
1414

1515
const (

_examples/iface/iface.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
package iface
77

88
import (
9-
"github.com/go-python/gopy/_examples/cpkg"
9+
"github.com/rudderlabs/gopy/_examples/cpkg"
1010
)
1111

1212
// Iface has a single F() method

_examples/wrapper/pywrapper/wrapper_code.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package pywrapper
77
import (
88
"fmt"
99

10-
"github.com/go-python/gopy/_examples/wrapper"
10+
"github.com/rudderlabs/gopy/_examples/wrapper"
1111
)
1212

1313
type WrapperStruct struct {

bind/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ static PyObject* Py_BuildValue2(char *format, long long arg0)
103103
*/
104104
import "C"
105105
import (
106-
"github.com/go-python/gopy/gopyh" // handler
106+
"github.com/rudderlabs/gopy/gopyh" // handler
107107
"%[7]s" // Error Translator
108108
109109
%[6]s

cmd_build.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
"github.com/gonuts/commander"
1717
"github.com/gonuts/flag"
1818

19-
"github.com/go-python/gopy/bind"
19+
"github.com/rudderlabs/gopy/bind"
2020
)
2121

2222
func gopyMakeCmdBuild() *commander.Command {
@@ -29,7 +29,7 @@ build generates and compiles (C)Python language bindings for Go package(s).
2929
3030
ex:
3131
$ gopy build [options] <go-package-name> [other-go-package...]
32-
$ gopy build github.com/go-python/gopy/_examples/hi
32+
$ gopy build github.com/rudderlabs/gopy/_examples/hi
3333
`,
3434
Flag: *flag.NewFlagSet("gopy-build", flag.ExitOnError),
3535
}

cmd_exe.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path/filepath"
1212
"strings"
1313

14-
"github.com/go-python/gopy/bind"
14+
"github.com/rudderlabs/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)
@@ -35,7 +35,7 @@ When including multiple packages, list in order of increasing dependency, and us
3535
3636
ex:
3737
$ gopy exe [options] <go-package-name> [other-go-package...]
38-
$ gopy exe github.com/go-python/gopy/_examples/hi
38+
$ gopy exe github.com/rudderlabs/gopy/_examples/hi
3939
`,
4040
Flag: *flag.NewFlagSet("gopy-exe", flag.ExitOnError),
4141
}
@@ -52,7 +52,7 @@ ex:
5252
cmd.Flag.String("author", "gopy", "author name")
5353
cmd.Flag.String("email", "[email protected]", "author email")
5454
cmd.Flag.String("desc", "", "short description of project (long comes from README.md)")
55-
cmd.Flag.String("url", "https://github.com/go-python/gopy", "home page for project")
55+
cmd.Flag.String("url", "https://github.com/rudderlabs/gopy", "home page for project")
5656

5757
return cmd
5858
}

cmd_gen.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"log"
1010

11-
"github.com/go-python/gopy/bind"
11+
"github.com/rudderlabs/gopy/bind"
1212
"github.com/gonuts/commander"
1313
"github.com/gonuts/flag"
1414
)
@@ -23,7 +23,7 @@ gen generates (C)Python language bindings for Go package(s).
2323
2424
ex:
2525
$ gopy gen [options] <go-package-name> [other-go-package...]
26-
$ gopy gen github.com/go-python/gopy/_examples/hi
26+
$ gopy gen github.com/rudderlabs/gopy/_examples/hi
2727
`,
2828
Flag: *flag.NewFlagSet("gopy-gen", flag.ExitOnError),
2929
}

cmd_pkg.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path/filepath"
1212
"strings"
1313

14-
"github.com/go-python/gopy/bind"
14+
"github.com/rudderlabs/gopy/bind"
1515
"github.com/gonuts/commander"
1616
"github.com/gonuts/flag"
1717
)
@@ -33,7 +33,7 @@ When including multiple packages, list in order of increasing dependency, and us
3333
3434
ex:
3535
$ gopy pkg [options] <go-package-name> [other-go-package...]
36-
$ gopy pkg github.com/go-python/gopy/_examples/hi
36+
$ gopy pkg github.com/rudderlabs/gopy/_examples/hi
3737
`,
3838
Flag: *flag.NewFlagSet("gopy-pkg", flag.ExitOnError),
3939
}
@@ -50,7 +50,7 @@ ex:
5050
cmd.Flag.String("author", "gopy", "author name")
5151
cmd.Flag.String("email", "[email protected]", "author email")
5252
cmd.Flag.String("desc", "", "short description of project (long comes from README.md)")
53-
cmd.Flag.String("url", "https://github.com/go-python/gopy", "home page for project")
53+
cmd.Flag.String("url", "https://github.com/rudderlabs/gopy", "home page for project")
5454

5555
return cmd
5656
}

0 commit comments

Comments
 (0)