File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 6
6
gopy generates (and compiles) language bindings that make it possible to call Go code
7
7
and pass objects from Python.
8
8
9
- Using gopy
9
+ # Using gopy
10
10
11
11
gopy takes a Go package and generates bindings for all of the exported
12
12
symbols. The exported symbols define the cross-language interface.
@@ -20,7 +20,6 @@ Go. Start with a Go package:
20
20
21
21
func Hello(name string) {
22
22
fmt.Println("Hello, %s!\n", name)
23
- }
24
-
23
+ }
25
24
*/
26
25
package main
Original file line number Diff line number Diff line change @@ -159,7 +159,7 @@ func DecRef(handle CGoHandle) {
159
159
}
160
160
}
161
161
162
- // IncRef increments the reference count for the specified handle.
162
+ // IncRef increments the reference count for the specified handle.
163
163
func IncRef (handle CGoHandle ) {
164
164
if handle < 1 {
165
165
return
You can’t perform that action at this time.
0 commit comments