Symbol Types
The following types of items may be displayed in the Source Browser, each with its own icon:
Packages, which are directories that contain a file named __init__.py. See the Python documentation for additional information on packages.
Directories that do not contain an __init__.py file.
Modules defined by Python files.
Classes found anywhere in Python source
Methods defined within classes
Attributes defined in a class or instance
Functions defined at the top-level of a module or within another function or method
Variables defined at the top-level of a module or within a function, class, or method
Symbols may be annotated to indicate their origin:
Symbols that were imported from another module are annotated with a leftward pointing arrow.
Symbols inherited from a superclass are annotated with an upward pointing arrow.
The Source Browser does not include function or method arguments, but these may be displayed in the Source Assistant, along with other information for the currently selected item in the Source Browser.