We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61c7830 commit bb98aa8Copy full SHA for bb98aa8
1 file changed
examples/multi-ctx/main.go
@@ -12,7 +12,12 @@ import (
12
"sync"
13
"time"
14
15
+ // This initializes gpython for runtime execution and is critical.
16
+ // It defines forward-declared symbols and registers native built-in modules, such as sys and time.
17
_ "github.com/go-python/gpython/modules"
18
+
19
+ // This is the primary import for gpython.
20
+ // It contains all symbols needed to fully compile and run python.
21
"github.com/go-python/gpython/py"
22
)
23
0 commit comments