===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
humanfriendly-8.2/humanfriendly/terminal/__init__.py-143-message of the ``humanfriendly`` program). If the environment variable
humanfriendly-8.2/humanfriendly/terminal/__init__.py:144:``$HUMANFRIENDLY_HIGHLIGHT_COLOR`` is set it determines the value of
humanfriendly-8.2/humanfriendly/terminal/__init__.py-145-:data:`HIGHLIGHT_COLOR`.
##############################################
humanfriendly-8.2/humanfriendly/terminal/__init__.py-433-
humanfriendly-8.2/humanfriendly/terminal/__init__.py:434:    2. On Windows, if the environment variable ``$ANSICON`` is set nothing is
humanfriendly-8.2/humanfriendly/terminal/__init__.py-435-       done because it is assumed that support for ANSI escape sequences has
##############################################
humanfriendly-8.2/humanfriendly/terminal/__init__.py-568-    --RAW-CONTROL-CHARS`` is used, otherwise the environment variable
humanfriendly-8.2/humanfriendly/terminal/__init__.py:569:    ``$PAGER`` is used (if ``$PAGER`` isn't set :man:`less` is used).
humanfriendly-8.2/humanfriendly/terminal/__init__.py-570-
##############################################
humanfriendly-8.2/humanfriendly/testing.py-397-    """
humanfriendly-8.2/humanfriendly/testing.py:398:    Context manager to temporarily change ``$HOME`` (the current user's profile directory).
humanfriendly-8.2/humanfriendly/testing.py-399-
##############################################
humanfriendly-8.2/humanfriendly/testing.py-410-        """
humanfriendly-8.2/humanfriendly/testing.py:411:        Activate the custom ``$PATH``.
humanfriendly-8.2/humanfriendly/testing.py-412-
humanfriendly-8.2/humanfriendly/testing.py-413-        :returns: The pathname of the directory that has
humanfriendly-8.2/humanfriendly/testing.py:414:                  been added to ``$PATH`` (a string).
humanfriendly-8.2/humanfriendly/testing.py-415-        """
##############################################
humanfriendly-8.2/humanfriendly/testing.py-426-    def __exit__(self, exc_type=None, exc_value=None, traceback=None):
humanfriendly-8.2/humanfriendly/testing.py:427:        """Deactivate the custom ``$HOME``."""
humanfriendly-8.2/humanfriendly/testing.py-428-        super(MockedHomeDirectory, self).__exit__(exc_type, exc_value, traceback)
##############################################
humanfriendly-8.2/humanfriendly/testing.py-433-    """
humanfriendly-8.2/humanfriendly/testing.py:434:    Context manager to temporarily customize ``$PATH`` (the executable search path).
humanfriendly-8.2/humanfriendly/testing.py-435-
##############################################
humanfriendly-8.2/humanfriendly/testing.py-455-        """
humanfriendly-8.2/humanfriendly/testing.py:456:        Activate the custom ``$PATH``.
humanfriendly-8.2/humanfriendly/testing.py-457-
humanfriendly-8.2/humanfriendly/testing.py-458-        :returns: The pathname of the directory that has
humanfriendly-8.2/humanfriendly/testing.py:459:                  been added to ``$PATH`` (a string).
humanfriendly-8.2/humanfriendly/testing.py-460-        """
##############################################
humanfriendly-8.2/humanfriendly/testing.py-475-    def __exit__(self, exc_type=None, exc_value=None, traceback=None):
humanfriendly-8.2/humanfriendly/testing.py:476:        """Deactivate the custom ``$PATH``."""
humanfriendly-8.2/humanfriendly/testing.py-477-        super(CustomSearchPath, self).__exit__(exc_type, exc_value, traceback)
##############################################
humanfriendly-8.2/humanfriendly/testing.py-480-    def current_search_path(self):
humanfriendly-8.2/humanfriendly/testing.py:481:        """The value of ``$PATH`` or :data:`os.defpath` (a string)."""
humanfriendly-8.2/humanfriendly/testing.py-482-        return os.environ.get('PATH', os.defpath)
##############################################
humanfriendly-8.2/humanfriendly/testing.py-516-        :returns: The pathname of the directory that has
humanfriendly-8.2/humanfriendly/testing.py:517:                  been added to ``$PATH`` (a string).
humanfriendly-8.2/humanfriendly/testing.py-518-        """
##############################################
humanfriendly-8.2/CHANGELOG.rst-631-
humanfriendly-8.2/CHANGELOG.rst:632:Make it easy to mock the ``$HOME`` directory.
humanfriendly-8.2/CHANGELOG.rst-633-