===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/misc.py-271-def substitute_variables(text, variables):
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/misc.py:272:    """Substitute ``${VAR}`` variables in `text` with their values.
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/misc.py-273-
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/config.py-78-        The arguments are the same as `RawConfigParser.get`, but in the found
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/config.py:79:        value, ``$WORD`` or ``${WORD}`` are replaced by the value of the
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/config.py-80-        environment variable ``WORD``.
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/collector.py-265-    # The trace function has to be set individually on each thread before
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/collector.py:266:    # execution begins.  Ironically, the only support the threading module has
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/collector.py-267-    # for running code before the thread main is the tracing function.  So we
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-425-  syntaxes for controlling the behavior of undefined variables: if ``VARNAME``
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst:426:  is not defined, ``${VARNAME?}`` will raise an error, and ``${VARNAME-default
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-427-  value}`` will use "default value".
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-1701-  ``~build/src``, for example), and with environment variable expansion
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst:1702:  (``build/$BUILDNUM/src``).
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-1703-
##############################################
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-1797-- Configuration files now support substitution of environment variables, using
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst:1798:  syntax like ``${WORD}``.  Closes `issue 97`_.
eric-20.8+ds1/eric/eric6/DebugClients/Python/coverage/doc/CHANGES.rst-1799-
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/util.py-151-    Note that this method automatically searches the whole string (eg:
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/util.py:152:    the regular expression is wrapped in ``'^$'``)
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/util.py-153-    """
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/prolog.py-120-            (r'forward(?=[(])', Keyword),
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/prolog.py:121:            # Execution-context methods
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/prolog.py-122-            (r'(context|parameter|this|se(lf|nder))(?=[(])', Keyword),
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/crystal.py-195-            (words('''
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/crystal.py:196:                abstract asm as begin break case do else elsif end ensure extend ifdef if
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/crystal.py-197-                include instance_sizeof next of pointerof private protected rescue return
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-111-    """
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py:112:    Common objdump lexer tokens to wrap an ASM lexer.
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-113-    """
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-669-    """
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py:670:    For Nasm (Intel) assembly code.
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-671-    """
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-676-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py:677:    # Tasm uses the same file endings, but TASM is not as common as NASM, so
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py:678:    # we prioritize NASM higher by default
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-679-    priority = 1.0
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-767-    """
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py:768:    For Tasm (Turbo Assembler) assembly code.
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/asm.py-769-    """
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-68-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py:69:    `$ pygmentize -O full,dialect=m2iso -f html -o /path/to/output /path/to/input`
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-70-        Use ISO dialect to render input to HTML output
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py:71:    `$ pygmentize -O full,dialect=m2iso+p1 -f rtf -o /path/to/output /path/to/input`
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-72-        Use ISO dialect with p1 extensions to render input to RTF output
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-130-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py:131:    ``$ pygmentize -O full,style=algol -f latex -o /path/to/output /path/to/input``
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-132-        Render input file in Algol publication mode to LaTeX output.
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-153-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py:154:    ``$ pygmentize -O full,dialect=m2r10,treat_stdlib_adts_as_builtins=Off ...``
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/modula2.py-155-        Render standard library ADTs as ordinary library types.
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/theorem.py-283-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/theorem.py:284:    keyword_proof_asm = ('assume', 'case', 'def', 'fix', 'presume')
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/theorem.py-285-
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/inferno.py-87-#   - Make lexers for:
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/inferno.py:88:#       - asm sources
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/lexers/inferno.py-89-#       - man pages
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py-224-        If set to ``True``, enables LaTeX math mode escape in comments. That
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py:225:        is, ``'$...$'`` inside a comment will trigger math mode (default:
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py-226-        ``False``).
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py-345-        if self.mathescape or self.texcomments or self.escapeinside:
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py:346:            outfile.write(u',codes={\\catcode`\\$=3\\catcode`\\^=7\\catcode`\\_=8}')
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/formatters/latex.py-347-        if self.verboptions:
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-172-  * MSDOS Session (PR#734)
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES:173:  * NASM (#1517)
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-174-  * Objective-C (PR#813, #1508)
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-239-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES:240:  * ASM (PR#784)
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-241-  * Chapel (PR#735)
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-964-
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES:965:- A few ASM lexer fixes (#450).
eric-20.8+ds1/eric/eric6/ThirdParty/Pygments/pygments/CHANGES-966-
##############################################
eric-20.8+ds1/eric/eric6/ThirdParty/Send2Trash/PKG-INFO-46-        device does not have a ``.Trash`` directory, and we don't have permission to
eric-20.8+ds1/eric/eric6/ThirdParty/Send2Trash/PKG-INFO:47:        create a ``.Trash-$UID`` directory.
eric-20.8+ds1/eric/eric6/ThirdParty/Send2Trash/PKG-INFO-48-        
##############################################
eric-20.8+ds1/debian/rules-32-	for i in eric/eric6/i18n/*.ts; do \
eric-20.8+ds1/debian/rules:33:	    lrelease -qt=5 $$i -qm debian/eric/usr/share/qt5/translations/`basename $$i .ts`.qm; \
eric-20.8+ds1/debian/rules-34-	done