I'm looking at the python documentation and came across 'type()' under the built-in-functions section. https://docs.python.org/3/library/functions.html
However, when I look at the actual details, I see it as a class which takes 1 or 3 arguments. https://docs.python.org/3/library/functions.html#type
>>> type(type)
<class 'type'>
>>> type(pow)
<class 'builtin_function_or_method'>
If it's not a function, why is it listed under builtin-functions section.? Am I missing something.?