MCPcopy Create free account
hub / github.com/goplus/py / GetBuiltins

Function GetBuiltins

code.go:125–128  ·  view source on GitHub ↗

Return a dictionary of the builtins in the current execution frame, or the interpreter of the thread state if no frame is currently executing. Return value: Borrowed reference.

()

Source from the content-addressed store, hash-verified

123//
124// Return value: Borrowed reference.
125func GetBuiltins() *Base {
126 ret := C.PyEval_GetBuiltins()
127 return newObject(ret)
128}
129
130// Return a dictionary of the global variables in the current execution frame,
131// or NULL if no frame is currently executing.

Callers

nothing calls this directly

Calls 1

newObjectFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…