File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 66gopy generates (and compiles) language bindings that make it possible to call Go code
77and pass objects from Python.
88
9- Using gopy
9+ # Using gopy
1010
1111gopy takes a Go package and generates bindings for all of the exported
1212symbols. The exported symbols define the cross-language interface.
@@ -20,7 +20,6 @@ Go. Start with a Go package:
2020
2121 func Hello(name string) {
2222 fmt.Println("Hello, %s!\n", name)
23- }
24-
23+ }
2524*/
2625package main
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ func DecRef(handle CGoHandle) {
159159 }
160160}
161161
162- // IncRef increments the reference count for the specified handle.
162+ // IncRef increments the reference count for the specified handle.
163163func IncRef (handle CGoHandle ) {
164164 if handle < 1 {
165165 return
You can’t perform that action at this time.
0 commit comments