Table of Contents
sphinx.ext
sphinx.builders
sphinx.domains
sphinx.ext.autodoc.
is_builtin_class_method
If attr_name is implemented at builtin class, return True.
>>> is_builtin_class_method(int, '__init__') True
Why this function needed? CPython implements int.__init__ by Descriptor but PyPy implements it by pure Python code.