# Functions
go:linkname Abs py.abs.
Return an AsyncIterator for an AsyncIterable object.
Return True if bool(x) is True for all values x in the iterable.
awaitable anext(async_iterator)
go:linkname Anext py.anext.
awaitable anext(async_iterator, default)
When awaited, return the next item from the given asynchronous iterator, or default if given and the iterator is exhausted.
Return True if bool(x) is True for any x in the iterable.
Return an ASCII-only representation of an object.
Return the binary representation of an integer.
breakpoint(*args, **kws)
See https://docs.python.org/3/library/functions.html#breakpoint
go:linkname Breakpoint py.breakpoint.
Return whether the object is callable (i.e., some kind of function).
Return a Unicode string of one character with ordinal i; 0 <= i <= 0x10ffff.
Compile source into a code object that can be executed by exec() or eval().
Deletes the named attribute from the given object.
dir()
go:linkname Dir py.dir.
dir(object)
go:linkname DirEx py.dir.
Return the tuple (x//y, x%y).
Evaluate the given source in the context of globals and locals.
Execute the given source in the context of globals and locals.
Return type(value).__format__(value, format_spec)
Many built-in types implement format_spec according to the Format Specification Mini-language.
getattr(object, name)
go:linkname GetAttr py.getattr.
getattr(object, name, default)
go:linkname GetAttrEx py.getattr.
Return the dictionary containing the current scope's global variables.
Return whether the object has an attribute with the given name.
Return the hash value for the given object.
Invoke the built-in help system.
Return the hexadecimal representation of an integer.
Return the identity of an object.
Read a string from standard input.
Return whether an object is an instance of a class or of a subclass thereof.
Return whether 'cls' is derived from another class or is the same class.
iter(object)
go:linkname Iter py.iter.
iter(object, sentinel)
go:linkname IterEx py.iter.
Return the number of items in a container.
Return a dictionary containing the current scope's local variables.
max(iterable, *, key=None) max(iterable, *, default, key=None) max(arg1, arg2, *args, key=None)
If one positional argument is provided, it should be an iterable.
min(iterable, *, key=None) min(iterable, *, default, key=None) min(arg1, arg2, *args, key=None)
go:linkname Min py.min.
next(iterator)
go:linkname Next py.next.
next(iterator, default)
Retrieve the next item from the iterator by calling its __next__() method.
Return the octal representation of an integer.
Open file and return a stream.
Return the Unicode code point for a one-character string.
Equivalent to base**exp with 2 arguments or base**exp % mod with 3 arguments
Some types, such as ints, are able to use a more efficient algorithm when invoked using the three argument form.
Prints the values to a stream, or to sys.stdout by default.
Return the canonical string representation of the object.
Round a number to a given precision in decimal digits.
Sets the named attribute on the given object to the specified value.
Return a new list containing all items from the iterable in ascending order.
Return the sum of a 'start' value (default: 0) plus an iterable of numbers
When the iterable is empty, return the start value.
vars()
go:linkname Vars py.vars.
vars(object)
Return the __dict__ attribute for a module, class, instance, or any other object with a __dict__ attribute.
# Constants
No description provided by the author