installed IPython version 8.5.0 via conda.
after running '?' in shell this is part of output:
object? -> Details about 'object'.
object?? -> More detailed, verbose information about 'object'.
so for trying this i also executed:
In [5]: len?
Signature: len(obj, /)
Docstring: Return the number of items in a container.
Type: builtin_function_or_method
In [6]: len??
Signature: len(obj, /)
Docstring: Return the number of items in a container.
Type: builtin_function_or_method
as you see there's no different between two functions result, while '??' should reference to source code (based on a book I'm reading) and show more information about object, but it's not happening.
so i think this function isn't working properly, what can i do about it?