===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
mypy-0.790/docs/source/config_file.rst-7-it uses the file ``mypy.ini`` with a fallback to ``.mypy.ini``, then ``setup.cfg`` in
mypy-0.790/docs/source/config_file.rst:8:the current directory, then ``$XDG_CONFIG_HOME/mypy/config``, then
mypy-0.790/docs/source/config_file.rst-9-``~/.config/mypy/config``, and finally ``.mypy.ini`` in the user home directory
##############################################
mypy-0.790/docs/source/config_file.rst-25-To refer to the user home directory, use ``~`` at the beginning of the path.
mypy-0.790/docs/source/config_file.rst:26:To expand environment variables use ``$VARNAME`` or ``${VARNAME}``.
mypy-0.790/docs/source/config_file.rst-27-
##############################################
mypy-0.790/docs/source/config_file.rst-181-
mypy-0.790/docs/source/config_file.rst:182:    **Note:** On Windows, use UNC paths to avoid using ``:`` (e.g. ``\\127.0.0.1\X$\MyDir`` where ``X`` is the drive letter).
mypy-0.790/docs/source/config_file.rst-183-
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/email/_parseaddr.pyi-21-    def getaddress(self): ...
mypy-0.790/mypy/typeshed/stdlib/2/email/_parseaddr.pyi:22:    def getrouteaddr(self): ...
mypy-0.790/mypy/typeshed/stdlib/2/email/_parseaddr.pyi-23-    def getaddrspec(self): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi-9-
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi:10:def formataddr(pair): ...
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi-11-def getaddresses(fieldvalues): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi-15-def parsedate_tz(data): ...
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi:16:def parseaddr(addr): ...
mypy-0.790/mypy/typeshed/stdlib/2/email/utils.pyi-17-def unquote(str): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi-27-    def getheaders(self, name): ...
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi:28:    def getaddr(self, name): ...
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi-29-    def getaddrlist(self, name): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi-56-    def getaddress(self): ...
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi:57:    def getrouteaddr(self): ...
mypy-0.790/mypy/typeshed/stdlib/2/rfc822.pyi-58-    def getaddrspec(self): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2/smtplib.pyi-28-
mypy-0.790/mypy/typeshed/stdlib/2/smtplib.pyi:29:def quoteaddr(addr): ...
mypy-0.790/mypy/typeshed/stdlib/2/smtplib.pyi-30-def quotedata(data): ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2and3/asyncore.pyi-38-    def set_socket(self, sock: SocketType, map: Optional[_maptype] = ...) -> None: ...
mypy-0.790/mypy/typeshed/stdlib/2and3/asyncore.pyi:39:    def set_reuse_addr(self) -> None: ...
mypy-0.790/mypy/typeshed/stdlib/2and3/asyncore.pyi-40-    def readable(self) -> bool: ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/2and3/socket.pyi-781-def gethostname() -> str: ...
mypy-0.790/mypy/typeshed/stdlib/2and3/socket.pyi:782:def gethostbyaddr(ip_address: str) -> Tuple[str, List[str], List[str]]: ...
mypy-0.790/mypy/typeshed/stdlib/2and3/socket.pyi-783-def getnameinfo(sockaddr: Union[Tuple[str, int], Tuple[str, int, int, int]], flags: int) -> Tuple[str, str]: ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/3/_tkinter.pyi-30-#    (1, 2, 3)
mypy-0.790/mypy/typeshed/stdlib/3/_tkinter.pyi:31:#    >>> tkapp.eval('return $foo')
mypy-0.790/mypy/typeshed/stdlib/3/_tkinter.pyi-32-#    '1 2 3'
##############################################
mypy-0.790/mypy/typeshed/stdlib/3/email/utils.pyi-11-def unquote(str: str) -> str: ...
mypy-0.790/mypy/typeshed/stdlib/3/email/utils.pyi:12:def parseaddr(address: Optional[str]) -> Tuple[str, str]: ...
mypy-0.790/mypy/typeshed/stdlib/3/email/utils.pyi:13:def formataddr(pair: Tuple[Optional[str], str], charset: Union[str, Charset] = ...) -> str: ...
mypy-0.790/mypy/typeshed/stdlib/3/email/utils.pyi-14-def getaddresses(fieldvalues: List[str]) -> List[Tuple[str, str]]: ...
##############################################
mypy-0.790/mypy/typeshed/stdlib/3/smtplib.pyi-45-
mypy-0.790/mypy/typeshed/stdlib/3/smtplib.pyi:46:def quoteaddr(addrstring: str) -> str: ...
mypy-0.790/mypy/typeshed/stdlib/3/smtplib.pyi-47-def quotedata(data: str) -> str: ...
##############################################
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi-21-    ) -> None: ...
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi:22:    def get_remote_addr(self, forwarded_for: Iterable[str]) -> Optional[str]: ...
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi-23-    def __call__(self, environ: WSGIEnvironment, start_response: StartResponse) -> Iterable[bytes]: ...
##############################################
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/wrappers.pyi-97-    @property
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/wrappers.pyi:98:    def remote_addr(self) -> str: ...
mypy-0.790/mypy/typeshed/third_party/2and3/werkzeug/wrappers.pyi-99-    remote_user: Text
##############################################
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi-75-    def set_socket_options(self, conn: Any) -> None: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi:76:    def fix_addr(self, addr: Any) -> Any: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi-77-    def maintenance(self, now: int) -> None: ...
##############################################
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi-99-    def getsockname(self) -> Tuple[str, Tuple[str, int]]: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi:100:    def fix_addr(self, addr: Any) -> Tuple[str, None]: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/server.pyi-101-    def get_server_name(self, ip: Any) -> str: ...
##############################################
mypy-0.790/mypy/typeshed/third_party/3/waitress/wasyncore.pyi-42-    def set_socket(self, sock: SocketType, map: Optional[Mapping[int, SocketType]] = ...) -> None: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/wasyncore.pyi:43:    def set_reuse_addr(self) -> None: ...
mypy-0.790/mypy/typeshed/third_party/3/waitress/wasyncore.pyi-44-    def readable(self) -> bool: ...
##############################################
mypy-0.790/mypyc/external/googletest/src/gtest.cc-3105-  } else {
mypy-0.790/mypyc/external/googletest/src/gtest.cc:3106:    printf(", where %s = %s\n", kTypeParamLabel, test_case.type_param());
mypy-0.790/mypyc/external/googletest/src/gtest.cc-3107-  }
##############################################
mypy-0.790/mypyc/external/googletest/src/gtest.cc-4883-            // the output easy to parse by a program.
mypy-0.790/mypyc/external/googletest/src/gtest.cc:4884:            PrintOnOneLine(test_case->type_param(), kMaxParamLength);
mypy-0.790/mypyc/external/googletest/src/gtest.cc-4885-          }
##############################################
mypy-0.790/mypyc/external/googletest/src/gtest.cc-4892-          // output easy to parse by a program.
mypy-0.790/mypyc/external/googletest/src/gtest.cc:4893:          PrintOnOneLine(test_info->value_param(), kMaxParamLength);
mypy-0.790/mypyc/external/googletest/src/gtest.cc-4894-        }
##############################################
mypy-0.790/test-data/stdlib-samples/3.2/test/test_set.py-13-
mypy-0.790/test-data/stdlib-samples/3.2/test/test_set.py:14:class PassThru(Exception):
mypy-0.790/test-data/stdlib-samples/3.2/test/test_set.py-15-    pass
##############################################
mypy-0.790/test-data/unit/README.md-206-
mypy-0.790/test-data/unit/README.md:207:To use the feature, pass e.g. `--txt-report "$(mktemp -d)"`.
##############################################
mypy-0.790/debian/sphinx/mypy.rst-39-**MYPYPATH**
mypy-0.790/debian/sphinx/mypy.rst:40:   Additional module search path entries. The format is the same as the shell's `$PATH`: one or more directory pathnames separated by colons.
mypy-0.790/debian/sphinx/mypy.rst-41-
##############################################
mypy-0.790/debian/sphinx/stubgen.rst-35-**MYPYPATH**
mypy-0.790/debian/sphinx/stubgen.rst:36:   Additional module search path entries. The format is the same as the shell's `$PATH`: one or more directory pathnames separated by colons.
mypy-0.790/debian/sphinx/stubgen.rst-37-