We need API for objects and for types in C, unless you want to keep explicit Py_TYPE()
calls. I propose to use #
to distinguish these two variations.
For different kinds of names we can use the “size” modifier. Currently l
, ll
, z
, t
, j
are supported, h
and hh
can be added if this is not enough. We need the following kinds:
t.__name__
t.__qualname__
t.__module__ + '.' + __qualname__
- Same as the previous, but omit the module name if it is “
builtins
” or “__main__
”.
It covers virtually all of current uses.