===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
python3.8-3.8.6/README.rst-206-version and can thus live side-by-side.  ``make install`` also creates
python3.8-3.8.6/README.rst:207:``${prefix}/bin/python3`` which refers to ``${prefix}/bin/pythonX.Y``.  If you
python3.8-3.8.6/README.rst-208-intend to install multiple versions using the same prefix you must decide which
##############################################
python3.8-3.8.6/Doc/howto/logging-cookbook.rst-1057-additional, optional keyword parameter named ``style``. This defaults to
python3.8-3.8.6/Doc/howto/logging-cookbook.rst:1058:``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond
python3.8-3.8.6/Doc/howto/logging-cookbook.rst-1059-to the other two formatting styles. Backwards compatibility is maintained by
##############################################
python3.8-3.8.6/Doc/howto/regex.rst-91-
python3.8-3.8.6/Doc/howto/regex.rst:92:Metacharacters are not active inside classes.  For example, ``[akm$]`` will
python3.8-3.8.6/Doc/howto/regex.rst:93:match any of the characters ``'a'``, ``'k'``, ``'m'``, or ``'$'``; ``'$'`` is
python3.8-3.8.6/Doc/howto/regex.rst-94-usually a metacharacter, but inside a character class it's stripped of its
##############################################
python3.8-3.8.6/Doc/howto/regex.rst-730-
python3.8-3.8.6/Doc/howto/regex.rst:731:   To match a literal ``'$'``, use ``\$`` or enclose it inside a character class,
python3.8-3.8.6/Doc/howto/regex.rst:732:   as in  ``[$]``.
python3.8-3.8.6/Doc/howto/regex.rst-733-
##############################################
python3.8-3.8.6/Doc/howto/regex.rst-1041-
python3.8-3.8.6/Doc/howto/regex.rst:1042:``.*[.](?!bat$)[^.]*$``  The negative lookahead means: if the expression ``bat``
python3.8-3.8.6/Doc/howto/regex.rst-1043-doesn't match at this point, try the rest of the pattern; if ``bat$`` does
##############################################
python3.8-3.8.6/Doc/howto/regex.rst-1052-
python3.8-3.8.6/Doc/howto/regex.rst:1053:``.*[.](?!bat$|exe$)[^.]*$``
python3.8-3.8.6/Doc/howto/regex.rst-1054-
##############################################
python3.8-3.8.6/Doc/howto/instrumentation.rst-281-   tracing script as positional arguments, which must be accessed using
python3.8-3.8.6/Doc/howto/instrumentation.rst:282:   ``$arg1``, ``$arg2``, ``$arg3``:
python3.8-3.8.6/Doc/howto/instrumentation.rst-283-
python3.8-3.8.6/Doc/howto/instrumentation.rst:284:       * ``$arg1`` : ``(const char *)`` filename, accessible using ``user_string($arg1)``
python3.8-3.8.6/Doc/howto/instrumentation.rst-285-
python3.8-3.8.6/Doc/howto/instrumentation.rst:286:       * ``$arg2`` : ``(const char *)`` function name, accessible using
python3.8-3.8.6/Doc/howto/instrumentation.rst:287:         ``user_string($arg2)``
python3.8-3.8.6/Doc/howto/instrumentation.rst-288-
python3.8-3.8.6/Doc/howto/instrumentation.rst:289:       * ``$arg3`` : ``int`` line number
python3.8-3.8.6/Doc/howto/instrumentation.rst-290-
##############################################
python3.8-3.8.6/Doc/install/index.rst-574-
python3.8-3.8.6/Doc/install/index.rst:575:``$PLAT`` is not (necessarily) an environment variable---it will be expanded by
python3.8-3.8.6/Doc/install/index.rst-576-the Distutils as it parses your command line options, just as it does when
##############################################
python3.8-3.8.6/Doc/install/index.rst-611-
python3.8-3.8.6/Doc/install/index.rst:612:You probably noticed the use of ``$HOME`` and ``$PLAT`` in the sample
python3.8-3.8.6/Doc/install/index.rst-613-configuration file input.  These are Distutils configuration variables, which
##############################################
python3.8-3.8.6/Doc/install/index.rst-616-the Distutils additionally define a few extra variables that may not be in your
python3.8-3.8.6/Doc/install/index.rst:617:environment, such as ``$PLAT``.  (And of course, on systems that don't have
python3.8-3.8.6/Doc/install/index.rst-618-environment variables, such as Mac OS 9, the configuration variables supplied by
##############################################
python3.8-3.8.6/Doc/install/index.rst-738-+--------------+----------------------------------------------------------+-------+
python3.8-3.8.6/Doc/install/index.rst:739:| personal     | :file:`$HOME/.pydistutils.cfg`                           | \(2)  |
python3.8-3.8.6/Doc/install/index.rst-740-+--------------+----------------------------------------------------------+-------+
##############################################
python3.8-3.8.6/Doc/whatsnew/3.7.rst-1242-:func:`re.split` now supports splitting on a pattern like ``r'\b'``,
python3.8-3.8.6/Doc/whatsnew/3.7.rst:1243:``'^$'`` or ``(?=-)`` that matches an empty string.
python3.8-3.8.6/Doc/whatsnew/3.7.rst-1244-(Contributed by Serhiy Storchaka in :issue:`25054`.)
##############################################
python3.8-3.8.6/Doc/whatsnew/3.7.rst-2348-  searching for all matches may also be changed in other cases.  For example
python3.8-3.8.6/Doc/whatsnew/3.7.rst:2349:  in the string ``'a\n\n'``, the pattern ``r'(?m)^\s*?$'`` will not only
python3.8-3.8.6/Doc/whatsnew/3.7.rst-2350-  match empty strings at positions 2 and 3, but also the string ``'\n'`` at
python3.8-3.8.6/Doc/whatsnew/3.7.rst-2351-  positions 2--3.  To match only blank lines, the pattern should be rewritten
python3.8-3.8.6/Doc/whatsnew/3.7.rst:2352:  as ``r'(?m)^[^\S\n]*$'``.
python3.8-3.8.6/Doc/whatsnew/3.7.rst-2353-
##############################################
python3.8-3.8.6/Doc/tutorial/inputoutput.rst-92-yet another way to substitute values into strings, using placeholders like
python3.8-3.8.6/Doc/tutorial/inputoutput.rst:93:``$x`` and replacing them with values from a dictionary, but offers much less
python3.8-3.8.6/Doc/tutorial/inputoutput.rst-94-control of the formatting.
##############################################
python3.8-3.8.6/Doc/tutorial/stdlib2.rst-80-braces allows it to be followed by more alphanumeric letters with no intervening
python3.8-3.8.6/Doc/tutorial/stdlib2.rst:81:spaces.  Writing ``$$`` creates a single escaped ``$``::
python3.8-3.8.6/Doc/tutorial/stdlib2.rst-82-
##############################################
python3.8-3.8.6/Doc/tools/susp-ignored.csv-133-library/http.client,,:port,host:port
python3.8-3.8.6/Doc/tools/susp-ignored.csv:134:library/http.cookies,,`,!#$%&'*+-.^_`|~:
python3.8-3.8.6/Doc/tools/susp-ignored.csv-135-library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS"
##############################################
python3.8-3.8.6/Doc/tools/susp-ignored.csv-218-library/stdtypes,,::,>>> z = y[::-2]
python3.8-3.8.6/Doc/tools/susp-ignored.csv:219:library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~"
python3.8-3.8.6/Doc/tools/susp-ignored.csv-220-library/tarfile,,:bz2,
##############################################
python3.8-3.8.6/Doc/tools/susp-ignored.csv-256-reference/expressions,,:index,x[index:index]
python3.8-3.8.6/Doc/tools/susp-ignored.csv:257:reference/lexical_analysis,,`,$       ?       `
python3.8-3.8.6/Doc/tools/susp-ignored.csv-258-reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name>
##############################################
python3.8-3.8.6/Doc/tools/susp-ignored.csv-307-whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf
python3.8-3.8.6/Doc/tools/susp-ignored.csv:308:library/re,,`,!#$%&'*+-.^_`|~:
python3.8-3.8.6/Doc/tools/susp-ignored.csv:309:library/re,,`,!\#\$%\&'\*\+\-\.\^_`\|\~:
python3.8-3.8.6/Doc/tools/susp-ignored.csv-310-library/tarfile,,:xz,'x:xz'
##############################################
python3.8-3.8.6/Doc/distutils/apiref.rst-1183-   Note that this is not a fully-fledged string interpolation function. A valid
python3.8-3.8.6/Doc/distutils/apiref.rst:1184:   ``$variable`` can consist only of upper and lower case letters, numbers and an
python3.8-3.8.6/Doc/distutils/apiref.rst-1185-   underscore. No { } or ( ) style quoting is available.
##############################################
python3.8-3.8.6/Doc/library/configparser.rst-335-   syntax, used for instance in ``zc.buildout``.  Extended interpolation is
python3.8-3.8.6/Doc/library/configparser.rst:336:   using ``${section:option}`` to denote a value from a foreign section.
python3.8-3.8.6/Doc/library/configparser.rst-337-   Interpolation can span multiple levels.  For convenience, if the
##############################################
python3.8-3.8.6/Doc/library/email.utils.rst-62-
python3.8-3.8.6/Doc/library/email.utils.rst:63:.. function:: parseaddr(address)
python3.8-3.8.6/Doc/library/email.utils.rst-64-
##############################################
python3.8-3.8.6/Doc/library/email.utils.rst-70-
python3.8-3.8.6/Doc/library/email.utils.rst:71:.. function:: formataddr(pair, charset='utf-8')
python3.8-3.8.6/Doc/library/email.utils.rst-72-
##############################################
python3.8-3.8.6/Doc/library/email.utils.rst-88-
python3.8-3.8.6/Doc/library/email.utils.rst:89:   This method returns a list of 2-tuples of the form returned by ``parseaddr()``.
python3.8-3.8.6/Doc/library/email.utils.rst-90-   *fieldvalues* is a sequence of header field values as might be returned by
##############################################
python3.8-3.8.6/Doc/library/asyncore.rst-350-            self.create_socket()
python3.8-3.8.6/Doc/library/asyncore.rst:351:            self.set_reuse_addr()
python3.8-3.8.6/Doc/library/asyncore.rst-352-            self.bind((host, port))
##############################################
python3.8-3.8.6/Doc/library/http.cookiejar.rst-563-
python3.8-3.8.6/Doc/library/http.cookiejar.rst:564:   Ignore cookies in Set-Cookie: headers that have names starting with ``'$'``.
python3.8-3.8.6/Doc/library/http.cookiejar.rst-565-
##############################################
python3.8-3.8.6/Doc/library/tkinter.tix.rst-535-   :meth:`tix_getbitmap` methods will search for image files.  The standard bitmap
python3.8-3.8.6/Doc/library/tkinter.tix.rst:536:   directory is :file:`$TIX_LIBRARY/bitmaps`. The :meth:`tix_addbitmapdir` method
python3.8-3.8.6/Doc/library/tkinter.tix.rst-537-   adds *directory* into this list. By using this method, the image files of an
##############################################
python3.8-3.8.6/Doc/library/socket.rst-792-
python3.8-3.8.6/Doc/library/socket.rst:793:.. function:: gethostbyaddr(ip_address)
python3.8-3.8.6/Doc/library/socket.rst-794-
##############################################
python3.8-3.8.6/Doc/library/http.cookies.rst-25-The character set, :data:`string.ascii_letters`, :data:`string.digits` and
python3.8-3.8.6/Doc/library/http.cookies.rst:26:``!#$%&'*+-.^_`|~:`` denote the set of valid characters allowed by this module
python3.8-3.8.6/Doc/library/http.cookies.rst-27-in Cookie name (as :attr:`~Morsel.key`).
##############################################
python3.8-3.8.6/Doc/library/logging.rst-765-``{attrname}`` as the placeholder in the format string. If you are using
python3.8-3.8.6/Doc/library/logging.rst:766:$-formatting (:class:`string.Template`), use the form ``${attrname}``. In
python3.8-3.8.6/Doc/library/logging.rst-767-both cases, of course, replace ``attrname`` with the actual attribute name
##############################################
python3.8-3.8.6/Doc/library/logging.rst-1170-   |              | for the format string. One of ``'%'``,      |
python3.8-3.8.6/Doc/library/logging.rst:1171:   |              | ``'{'`` or ``'$'`` for :ref:`printf-style   |
python3.8-3.8.6/Doc/library/logging.rst-1172-   |              | <old-string-formatting>`,                   |
##############################################
python3.8-3.8.6/Doc/library/crypt.rst-102-   *salt* (either a random 2 or 16 character string, possibly prefixed with
python3.8-3.8.6/Doc/library/crypt.rst:103:   ``$digit$`` to indicate the method) which will be used to perturb the
python3.8-3.8.6/Doc/library/crypt.rst-104-   encryption algorithm.  The characters in *salt* must be in the set
python3.8-3.8.6/Doc/library/crypt.rst-105-   ``[./a-zA-Z0-9]``, with the exception of Modular Crypt Format which
python3.8-3.8.6/Doc/library/crypt.rst:106:   prefixes a ``$digit$``.
python3.8-3.8.6/Doc/library/crypt.rst-107-
##############################################
python3.8-3.8.6/Doc/library/re.rst-427-   optional and can be omitted. For example,
python3.8-3.8.6/Doc/library/re.rst:428:   ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>|$)`` is a poor email matching pattern, which
python3.8-3.8.6/Doc/library/re.rst-429-   will match with ``'<user@host.com>'`` as well as ``'user@host.com'``, but
##############################################
python3.8-3.8.6/Doc/library/re.rst-435-resulting RE will match the second character.  For example, ``\$`` matches the
python3.8-3.8.6/Doc/library/re.rst:436:character ``'$'``.
python3.8-3.8.6/Doc/library/re.rst-437-
##############################################
python3.8-3.8.6/Doc/library/re.rst-706-   string and at the beginning of each line (immediately following each newline);
python3.8-3.8.6/Doc/library/re.rst:707:   and the pattern character ``'$'`` matches at the end of the string and at the
python3.8-3.8.6/Doc/library/re.rst-708-   end of each line (immediately preceding each newline).  By default, ``'^'``
python3.8-3.8.6/Doc/library/re.rst:709:   matches only at the beginning of the string, and ``'$'`` only at the end of the
python3.8-3.8.6/Doc/library/re.rst-710-   string and immediately before the newline (if any) at the end of the string.
##############################################
python3.8-3.8.6/Doc/library/string.rst-58-   String of ASCII characters which are considered punctuation characters
python3.8-3.8.6/Doc/library/string.rst:59:   in the ``C`` locale: ``!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~``.
python3.8-3.8.6/Doc/library/string.rst-60-
##############################################
python3.8-3.8.6/Doc/library/string.rst-700-
python3.8-3.8.6/Doc/library/string.rst:701:* ``$$`` is an escape; it is replaced with a single ``$``.
python3.8-3.8.6/Doc/library/string.rst-702-
python3.8-3.8.6/Doc/library/string.rst:703:* ``$identifier`` names a substitution placeholder matching a mapping key of
python3.8-3.8.6/Doc/library/string.rst-704-  ``"identifier"``.  By default, ``"identifier"`` is restricted to any
##############################################
python3.8-3.8.6/Doc/library/string.rst-709-
python3.8-3.8.6/Doc/library/string.rst:710:* ``${identifier}`` is equivalent to ``$identifier``.  It is required when
python3.8-3.8.6/Doc/library/string.rst-711-  valid identifier characters follow the placeholder but are not part of the
python3.8-3.8.6/Doc/library/string.rst:712:  placeholder, such as ``"${noun}ification"``.
python3.8-3.8.6/Doc/library/string.rst-713-
##############################################
python3.8-3.8.6/Doc/library/string.rst-823-
python3.8-3.8.6/Doc/library/string.rst:824:* *escaped* -- This group matches the escape sequence, e.g. ``$$``, in the
python3.8-3.8.6/Doc/library/string.rst-825-  default pattern.
##############################################
python3.8-3.8.6/Doc/library/mailcap.rst-65-   The information is derived from all of the mailcap files found on the system.
python3.8-3.8.6/Doc/library/mailcap.rst:66:   Settings in the user's mailcap file :file:`$HOME/.mailcap` will override
python3.8-3.8.6/Doc/library/mailcap.rst-67-   settings in the system mailcap files :file:`/etc/mailcap`,
##############################################
python3.8-3.8.6/Doc/library/os.rst-606-      single: gethostname() (in module socket)
python3.8-3.8.6/Doc/library/os.rst:607:      single: gethostbyaddr() (in module socket)
python3.8-3.8.6/Doc/library/os.rst-608-
##############################################
python3.8-3.8.6/Doc/library/os.rst-625-   :func:`socket.gethostname`  or even
python3.8-3.8.6/Doc/library/os.rst:626:   ``socket.gethostbyaddr(socket.gethostname())``.
python3.8-3.8.6/Doc/library/os.rst-627-
##############################################
python3.8-3.8.6/Doc/library/os.path.rst-196-   Return the argument with environment variables expanded.  Substrings of the form
python3.8-3.8.6/Doc/library/os.path.rst:197:   ``$name`` or ``${name}`` are replaced by the value of environment variable
python3.8-3.8.6/Doc/library/os.path.rst-198-   *name*.  Malformed variable names and references to non-existing variables are
##############################################
python3.8-3.8.6/Doc/library/os.path.rst-200-
python3.8-3.8.6/Doc/library/os.path.rst:201:   On Windows, ``%name%`` expansions are supported in addition to ``$name`` and
python3.8-3.8.6/Doc/library/os.path.rst:202:   ``${name}``.
python3.8-3.8.6/Doc/library/os.path.rst-203-
##############################################
python3.8-3.8.6/Doc/using/unix.rst-95-These are subject to difference depending on local installation conventions;
python3.8-3.8.6/Doc/using/unix.rst:96::envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` (``${exec_prefix}``)
python3.8-3.8.6/Doc/using/unix.rst-97-are installation-dependent and should be interpreted as for GNU software; they
##############################################
python3.8-3.8.6/Doc/faq/programming.rst-851-unwanted side effects.  For example, someone could pass
python3.8-3.8.6/Doc/faq/programming.rst:852:``__import__('os').system("rm -rf $HOME")`` which would erase your home
python3.8-3.8.6/Doc/faq/programming.rst-853-directory.
##############################################
python3.8-3.8.6/Modules/socketmodule.c-23-- socket.gethostbyname(hostname) --> host IP address (string: 'dd.dd.dd.dd')
python3.8-3.8.6/Modules/socketmodule.c:24:- socket.gethostbyaddr(IP address) --> (hostname, [alias, ...], [IP addr, ...])
python3.8-3.8.6/Modules/socketmodule.c-25-- socket.gethostname() --> host name (string: 'spam' or 'spam.domain.com')
##############################################
python3.8-3.8.6/Modules/socketmodule.c-299-
python3.8-3.8.6/Modules/socketmodule.c:300:/* Headers needed for inet_ntoa() and inet_addr() */
python3.8-3.8.6/Modules/socketmodule.c-301-#   include <arpa/inet.h>
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1071-static int
python3.8-3.8.6/Modules/socketmodule.c:1072:setipaddr(const char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af)
python3.8-3.8.6/Modules/socketmodule.c-1073-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1123-    }
python3.8-3.8.6/Modules/socketmodule.c:1124:    /* special-case broadcast - inet_addr() below can return INADDR_NONE for
python3.8-3.8.6/Modules/socketmodule.c-1125-     * this */
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1178-        memset(sin, 0, sizeof(*sin));
python3.8-3.8.6/Modules/socketmodule.c:1179:        if ((sin->sin_addr.s_addr = inet_addr(name)) != INADDR_NONE) {
python3.8-3.8.6/Modules/socketmodule.c-1180-            sin->sin_family = AF_INET;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1203-    Py_END_ALLOW_THREADS
python3.8-3.8.6/Modules/socketmodule.c:1204:    RELEASE_GETADDRINFO_LOCK  /* see comment in setipaddr() */
python3.8-3.8.6/Modules/socketmodule.c-1205-    if (error) {
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1229-static PyObject *
python3.8-3.8.6/Modules/socketmodule.c:1230:make_ipv4_addr(const struct sockaddr_in *addr)
python3.8-3.8.6/Modules/socketmodule.c-1231-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1243-static PyObject *
python3.8-3.8.6/Modules/socketmodule.c:1244:make_ipv6_addr(const struct sockaddr_in6 *addr)
python3.8-3.8.6/Modules/socketmodule.c-1245-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1260-static int
python3.8-3.8.6/Modules/socketmodule.c:1261:setbdaddr(const char *name, bdaddr_t *bdaddr)
python3.8-3.8.6/Modules/socketmodule.c-1262-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1287-static PyObject *
python3.8-3.8.6/Modules/socketmodule.c:1288:makebdaddr(bdaddr_t *bdaddr)
python3.8-3.8.6/Modules/socketmodule.c-1289-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1306-static PyObject *
python3.8-3.8.6/Modules/socketmodule.c:1307:makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto)
python3.8-3.8.6/Modules/socketmodule.c-1308-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1318-        const struct sockaddr_in *a = (const struct sockaddr_in *)addr;
python3.8-3.8.6/Modules/socketmodule.c:1319:        PyObject *addrobj = make_ipv4_addr(a);
python3.8-3.8.6/Modules/socketmodule.c-1320-        PyObject *ret = NULL;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1373-        const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)addr;
python3.8-3.8.6/Modules/socketmodule.c:1374:        PyObject *addrobj = make_ipv6_addr(a);
python3.8-3.8.6/Modules/socketmodule.c-1375-        PyObject *ret = NULL;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1394-            struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr;
python3.8-3.8.6/Modules/socketmodule.c:1395:            PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr));
python3.8-3.8.6/Modules/socketmodule.c-1396-            PyObject *ret = NULL;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1408-            struct sockaddr_rc *a = (struct sockaddr_rc *) addr;
python3.8-3.8.6/Modules/socketmodule.c:1409:            PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr));
python3.8-3.8.6/Modules/socketmodule.c-1410-            PyObject *ret = NULL;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1423-#if defined(__NetBSD__) || defined(__DragonFly__)
python3.8-3.8.6/Modules/socketmodule.c:1424:            return makebdaddr(&_BT_HCI_MEMB(a, bdaddr));
python3.8-3.8.6/Modules/socketmodule.c-1425-#else /* __NetBSD__ || __DragonFly__ */
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1435-            struct sockaddr_sco *a = (struct sockaddr_sco *) addr;
python3.8-3.8.6/Modules/socketmodule.c:1436:            return makebdaddr(&_BT_SCO_MEMB(a, bdaddr));
python3.8-3.8.6/Modules/socketmodule.c-1437-        }
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1816-        addr=(struct sockaddr_in*)addr_ret;
python3.8-3.8.6/Modules/socketmodule.c:1817:        result = setipaddr(host.buf, (struct sockaddr *)addr,
python3.8-3.8.6/Modules/socketmodule.c-1818-                           sizeof(*addr),  AF_INET);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1862-        addr = (struct sockaddr_in6*)addr_ret;
python3.8-3.8.6/Modules/socketmodule.c:1863:        result = setipaddr(host.buf, (struct sockaddr *)addr,
python3.8-3.8.6/Modules/socketmodule.c-1864-                           sizeof(*addr), AF_INET6);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1906-            }
python3.8-3.8.6/Modules/socketmodule.c:1907:            if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0)
python3.8-3.8.6/Modules/socketmodule.c-1908-                return 0;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1925-            }
python3.8-3.8.6/Modules/socketmodule.c:1926:            if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0)
python3.8-3.8.6/Modules/socketmodule.c-1927-                return 0;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1943-            straddr = PyBytes_AS_STRING(args);
python3.8-3.8.6/Modules/socketmodule.c:1944:            if (setbdaddr(straddr, &_BT_HCI_MEMB(addr, bdaddr)) < 0)
python3.8-3.8.6/Modules/socketmodule.c-1945-                return 0;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-1970-            straddr = PyBytes_AS_STRING(args);
python3.8-3.8.6/Modules/socketmodule.c:1971:            if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0)
python3.8-3.8.6/Modules/socketmodule.c-1972-                return 0;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-2710-
python3.8-3.8.6/Modules/socketmodule.c:2711:    addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
python3.8-3.8.6/Modules/socketmodule.c-2712-                        addrlen, s->sock_proto);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-3319-        return s->errorhandler();
python3.8-3.8.6/Modules/socketmodule.c:3320:    return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
python3.8-3.8.6/Modules/socketmodule.c-3321-                        s->sock_proto);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-3348-        return s->errorhandler();
python3.8-3.8.6/Modules/socketmodule.c:3349:    return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
python3.8-3.8.6/Modules/socketmodule.c-3350-                        s->sock_proto);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-3626-
python3.8-3.8.6/Modules/socketmodule.c:3627:    *addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen,
python3.8-3.8.6/Modules/socketmodule.c-3628-                         s->sock_proto);
##############################################
python3.8-3.8.6/Modules/socketmodule.c-3865-                           (int)msg.msg_flags,
python3.8-3.8.6/Modules/socketmodule.c:3866:                           makesockaddr(s->sock_fd, SAS2SA(&addrbuf),
python3.8-3.8.6/Modules/socketmodule.c-3867-                                        ((msg.msg_namelen > addrbuflen) ?
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5455-    }
python3.8-3.8.6/Modules/socketmodule.c:5456:    if (setipaddr(name, (struct sockaddr *)&addrbuf,  sizeof(addrbuf), AF_INET) < 0)
python3.8-3.8.6/Modules/socketmodule.c-5457-        goto finally;
python3.8-3.8.6/Modules/socketmodule.c:5458:    ret = make_ipv4_addr(&addrbuf);
python3.8-3.8.6/Modules/socketmodule.c-5459-finally:
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5473-#ifdef MS_WINDOWS
python3.8-3.8.6/Modules/socketmodule.c:5474:    /* Issue #26227: gethostbyaddr() returns a string encoded
python3.8-3.8.6/Modules/socketmodule.c-5475-     * to the ANSI code page */
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5559-            memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr));
python3.8-3.8.6/Modules/socketmodule.c:5560:            tmp = make_ipv4_addr(&sin);
python3.8-3.8.6/Modules/socketmodule.c-5561-
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5576-            memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr));
python3.8-3.8.6/Modules/socketmodule.c:5577:            tmp = make_ipv6_addr(&sin6);
python3.8-3.8.6/Modules/socketmodule.c-5578-
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5642-    }
python3.8-3.8.6/Modules/socketmodule.c:5643:    if (setipaddr(name, SAS2SA(&addr), sizeof(addr), AF_INET) < 0)
python3.8-3.8.6/Modules/socketmodule.c-5644-        goto finally;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5686-
python3.8-3.8.6/Modules/socketmodule.c:5687:/* Python interface to gethostbyaddr(IP). */
python3.8-3.8.6/Modules/socketmodule.c-5688-
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5690-static PyObject *
python3.8-3.8.6/Modules/socketmodule.c:5691:socket_gethostbyaddr(PyObject *self, PyObject *args)
python3.8-3.8.6/Modules/socketmodule.c-5692-{
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5724-    af = AF_UNSPEC;
python3.8-3.8.6/Modules/socketmodule.c:5725:    if (setipaddr(ip_num, sa, sizeof(addr), af) < 0)
python3.8-3.8.6/Modules/socketmodule.c-5726-        goto finally;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5763-    SUPPRESS_DEPRECATED_CALL
python3.8-3.8.6/Modules/socketmodule.c:5764:    h = gethostbyaddr(ap, al, af);
python3.8-3.8.6/Modules/socketmodule.c-5765-#endif /* HAVE_GETHOSTBYNAME_R */
##############################################
python3.8-3.8.6/Modules/socketmodule.c-5776-PyDoc_STRVAR(gethostbyaddr_doc,
python3.8-3.8.6/Modules/socketmodule.c:5777:"gethostbyaddr(host) -> (name, aliaslist, addresslist)\n\
python3.8-3.8.6/Modules/socketmodule.c-5778-\n\
##############################################
python3.8-3.8.6/Modules/socketmodule.c-6214-#endif
python3.8-3.8.6/Modules/socketmodule.c:6215:    /* Have to use inet_addr() instead */
python3.8-3.8.6/Modules/socketmodule.c-6216-    unsigned int packed_addr;
##############################################
python3.8-3.8.6/Modules/socketmodule.c-6251-        SUPPRESS_DEPRECATED_CALL
python3.8-3.8.6/Modules/socketmodule.c:6252:        packed_addr = inet_addr(ip_addr);
python3.8-3.8.6/Modules/socketmodule.c-6253-
##############################################
python3.8-3.8.6/Modules/socketmodule.c-6491-    Py_END_ALLOW_THREADS
python3.8-3.8.6/Modules/socketmodule.c:6492:    RELEASE_GETADDRINFO_LOCK  /* see comment in setipaddr() */
python3.8-3.8.6/Modules/socketmodule.c-6493-    if (error) {
##############################################
python3.8-3.8.6/Modules/socketmodule.c-6503-        PyObject *addr =
python3.8-3.8.6/Modules/socketmodule.c:6504:            makesockaddr(-1, res->ai_addr, res->ai_addrlen, protocol);
python3.8-3.8.6/Modules/socketmodule.c-6505-        if (addr == NULL)
##############################################
python3.8-3.8.6/Modules/socketmodule.c-6587-    Py_END_ALLOW_THREADS
python3.8-3.8.6/Modules/socketmodule.c:6588:    RELEASE_GETADDRINFO_LOCK  /* see comment in setipaddr() */
python3.8-3.8.6/Modules/socketmodule.c-6589-    if (error) {
##############################################
python3.8-3.8.6/Modules/getnameinfo.c-180-#ifdef ENABLE_IPV6
python3.8-3.8.6/Modules/getnameinfo.c:181:        hp = getipnodebyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af, &h_error);
python3.8-3.8.6/Modules/getnameinfo.c-182-#else
python3.8-3.8.6/Modules/getnameinfo.c:183:        hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af);
python3.8-3.8.6/Modules/getnameinfo.c-184-        h_error = h_errno;
##############################################
python3.8-3.8.6/Modules/_decimal/tests/runall-memorydebugger.sh-44-{
python3.8-3.8.6/Modules/_decimal/tests/runall-memorydebugger.sh:45:    len=`echo $@ | wc -c`
python3.8-3.8.6/Modules/_decimal/tests/runall-memorydebugger.sh:46:    margin="#%"`expr \( 74 - $len \) / 2`"s"
python3.8-3.8.6/Modules/_decimal/tests/runall-memorydebugger.sh-47-
##############################################
python3.8-3.8.6/Modules/_decimal/_decimal.c-110-#define MPD(v) (&((PyDecObject *)v)->dec)
python3.8-3.8.6/Modules/_decimal/_decimal.c:111:#define SdFlagAddr(v) (((PyDecSignalDictObject *)v)->flags)
python3.8-3.8.6/Modules/_decimal/_decimal.c-112-#define SdFlags(v) (*((PyDecSignalDictObject *)v)->flags)
##############################################
python3.8-3.8.6/Modules/_decimal/_decimal.c-547-{
python3.8-3.8.6/Modules/_decimal/_decimal.c:548:    SdFlagAddr(self) = NULL;
python3.8-3.8.6/Modules/_decimal/_decimal.c-549-    return 0;
##############################################
python3.8-3.8.6/Modules/_decimal/_decimal.c-1221-
python3.8-3.8.6/Modules/_decimal/_decimal.c:1222:    SdFlagAddr(self->traps) = &ctx->traps;
python3.8-3.8.6/Modules/_decimal/_decimal.c:1223:    SdFlagAddr(self->flags) = &ctx->status;
python3.8-3.8.6/Modules/_decimal/_decimal.c-1224-
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/README.txt-33-      vcstdint.h    ->  stdint.h (included in VS 2010 but not in VS 2008).
python3.8-3.8.6/Modules/_decimal/libmpdec/README.txt:34:      vcdiv64.asm   ->  Double word division used in typearith.h. VS 2008 does
python3.8-3.8.6/Modules/_decimal/libmpdec/README.txt:35:                        not allow inline asm for x64. Also, it does not provide
python3.8-3.8.6/Modules/_decimal/libmpdec/README.txt-36-                        an intrinsic for double word division.
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-510-}
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h:511:/* END PPRO GCC ASM */
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-512-#elif defined(MASM)
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-519-
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h:520:    __asm {
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-521-        mov     eax, dinvmod
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-548-{
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h:549:    __asm {
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-550-        mov     ecx, dmod
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-587-{
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h:588:    __asm {
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-589-        mov     ecx, dmod
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-624-}
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h:625:#endif /* PPRO MASM (_MSC_VER) */
python3.8-3.8.6/Modules/_decimal/libmpdec/umodarith.h-626-
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h-49-#elif defined(PPRO)
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h:50:/* PentiumPro (or later) gcc inline asm */
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h-51-  #define MULMOD(a, b) ppro_mulmod(a, b, &dmod, dinvmod)
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h-66-
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h:67:/* PentiumPro (or later) gcc inline asm */
python3.8-3.8.6/Modules/_decimal/libmpdec/constants.h-68-extern const float MPD_TWO63;
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h-145-}
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h:146:/* END ASM */
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h-147-
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h-182-}
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h:183:/* END MASM (_MSC_VER) */
python3.8-3.8.6/Modules/_decimal/libmpdec/bits.h-184-#else
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-234-}
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:235:/* END GCC ASM */
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-236-#elif defined(MASM)
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-248-
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:249:/* END MASM (_MSC_VER) */
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-250-#else
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-491-}
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:492:/* END GCC ASM */
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-493-#elif defined(MASM)
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-498-
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:499:    __asm {
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-500-        mov eax, a
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-515-
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:516:    __asm {
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-517-        mov eax, lo
##############################################
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-526-}
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h:527:/* END MASM (_MSC_VER) */
python3.8-3.8.6/Modules/_decimal/libmpdec/typearith.h-528-#else
##############################################
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-5-PyDoc_STRVAR(_tkinter_tkapp_eval__doc__,
python3.8-3.8.6/Modules/clinic/_tkinter.c.h:6:"eval($self, script, /)\n"
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-7-"--\n"
##############################################
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-617-PyDoc_STRVAR(_tkinter_tkapp_interpaddr__doc__,
python3.8-3.8.6/Modules/clinic/_tkinter.c.h:618:"interpaddr($self, /)\n"
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-619-"--\n"
##############################################
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-628-static PyObject *
python3.8-3.8.6/Modules/clinic/_tkinter.c.h:629:_tkinter_tkapp_interpaddr(TkappObject *self, PyObject *Py_UNUSED(ignored))
python3.8-3.8.6/Modules/clinic/_tkinter.c.h-630-{
##############################################
python3.8-3.8.6/Modules/clinic/posixmodule.c.h-1730-PyDoc_STRVAR(os_system__doc__,
python3.8-3.8.6/Modules/clinic/posixmodule.c.h:1731:"system($module, /, command)\n"
python3.8-3.8.6/Modules/clinic/posixmodule.c.h-1732-"--\n"
##############################################
python3.8-3.8.6/Modules/clinic/posixmodule.c.h-1769-PyDoc_STRVAR(os_system__doc__,
python3.8-3.8.6/Modules/clinic/posixmodule.c.h:1770:"system($module, /, command)\n"
python3.8-3.8.6/Modules/clinic/posixmodule.c.h-1771-"--\n"
##############################################
python3.8-3.8.6/Modules/getaddrinfo.c-134-                          int);
python3.8-3.8.6/Modules/getaddrinfo.c:135:static int get_addr(const char *, int, struct addrinfo **,
python3.8-3.8.6/Modules/getaddrinfo.c-136-                        struct addrinfo *, int);
##############################################
python3.8-3.8.6/Modules/getaddrinfo.c-379-     * hostname == NULL.
python3.8-3.8.6/Modules/getaddrinfo.c:380:     * passive socket -> anyaddr (0.0.0.0 or ::)
python3.8-3.8.6/Modules/getaddrinfo.c-381-     * non-passive socket -> localhost (127.0.0.1 or ::1)
##############################################
python3.8-3.8.6/Modules/getaddrinfo.c-465-    /* hostname as alphabetical name */
python3.8-3.8.6/Modules/getaddrinfo.c:466:    error = get_addr(hostname, pai->ai_family, &top, pai, port);
python3.8-3.8.6/Modules/getaddrinfo.c-467-    if (error == 0) {
##############################################
python3.8-3.8.6/Modules/getaddrinfo.c-500-#ifdef ENABLE_IPV6
python3.8-3.8.6/Modules/getaddrinfo.c:501:    hp = getipnodebyaddr(addr, gai_afd->a_addrlen, gai_afd->a_af, &h_error);
python3.8-3.8.6/Modules/getaddrinfo.c-502-#else
python3.8-3.8.6/Modules/getaddrinfo.c:503:    hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET);
python3.8-3.8.6/Modules/getaddrinfo.c-504-#endif
##############################################
python3.8-3.8.6/Modules/getaddrinfo.c-529-static int
python3.8-3.8.6/Modules/getaddrinfo.c:530:get_addr(hostname, af, res, pai, port0)
python3.8-3.8.6/Modules/getaddrinfo.c-531-    const char *hostname;
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-71-
python3.8-3.8.6/Modules/ld_so_aix.in:72:makexp=`dirname $0`/makexp_aix
python3.8-3.8.6/Modules/ld_so_aix.in-73-test -x "${makexp}" || makexp="@abs_srcdir@/makexp_aix"
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-76-CC=$1; shift
python3.8-3.8.6/Modules/ld_so_aix.in:77:whichcc=`which $CC`
python3.8-3.8.6/Modules/ld_so_aix.in-78-
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-103-    -e* | -Wl,-e*)
python3.8-3.8.6/Modules/ld_so_aix.in:104:	entry=`echo $1 | sed -e "s/-Wl,//" -e "s/-e//"`
python3.8-3.8.6/Modules/ld_so_aix.in-105-	;;
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-113-    -o*)
python3.8-3.8.6/Modules/ld_so_aix.in:114:	objfile=`echo $1 | sed "s/-o//"`
python3.8-3.8.6/Modules/ld_so_aix.in-115-	;;
python3.8-3.8.6/Modules/ld_so_aix.in-116-    -bI:* | -Wl,-bI:*)
python3.8-3.8.6/Modules/ld_so_aix.in:117:	impfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bI://"`
python3.8-3.8.6/Modules/ld_so_aix.in-118-	;;
python3.8-3.8.6/Modules/ld_so_aix.in-119-    -bE:* | -Wl,-bE:*)
python3.8-3.8.6/Modules/ld_so_aix.in:120:	expfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bE://"`
python3.8-3.8.6/Modules/ld_so_aix.in-121-	;;
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-151-
python3.8-3.8.6/Modules/ld_so_aix.in:152:filename=`basename $objfile | sed "s/\.[^.]*$//"`
python3.8-3.8.6/Modules/ld_so_aix.in-153-
##############################################
python3.8-3.8.6/Modules/ld_so_aix.in-161-if test -z "$entry"; then
python3.8-3.8.6/Modules/ld_so_aix.in:162:  entry=PyInit_`echo $filename | sed "s/module.*//"`
python3.8-3.8.6/Modules/ld_so_aix.in-163-fi
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-96-typedef struct ffi_aix_trampoline_struct {
python3.8-3.8.6/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h:97:	void*	code_pointer;	/* Pointer to ffi_closure_ASM */
python3.8-3.8.6/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-98-	void*	toc;			/* TOC */
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-375-
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:376:			/* We don't have to do anything in asm for the return.  */
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-377-			flags = FFI_TYPE_VOID;
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-649-
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:650:			/* We don't have to do anything in asm for the return.  */
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-651-			ret = FFI_TYPE_VOID;
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-33-
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-darwin.S:34:#define LIBFFI_ASM	
python3.8-3.8.6/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-35-#include <fficonfig.h>
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-810-	contain parameters to be passed into the stack frame and setting up space
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:811:	for a return value, ffi_closure_ASM invokes the following helper function
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-812-	to do most of the work.  */
##############################################
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1017-
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:1018:	/* Tell ffi_closure_ASM to perform return type promotions.  */
python3.8-3.8.6/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1019-	return cif->rtype->type;
##############################################
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c-56-extern int dlclose(void * handle) __attribute__((weak_import));
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c:57:extern int dladdr(const void *, Dl_info *) __attribute__((weak_import));
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c-58-#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 */
##############################################
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c-242-
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c:243:static int darwin_dladdr(const void *handle, Dl_info *info) {
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn_simple.c-244-    return 0;
##############################################
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h-41-/*
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h:42: * Structure filled in by dladdr().
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h-43- */
##############################################
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h-65-extern int dlclose(void * handle);
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h:66:extern int dladdr(const void *, Dl_info *);
python3.8-3.8.6/Modules/_ctypes/darwin/dlfcn.h-67-#endif
##############################################
python3.8-3.8.6/Modules/makesetup-72-'')	case $0 in
python3.8-3.8.6/Modules/makesetup:73:	*/*)	libdir=`echo $0 | sed 's,/[^/]*$,,'`;;
python3.8-3.8.6/Modules/makesetup-74-	*)	libdir=.;;
##############################################
python3.8-3.8.6/Modules/makesetup-130-			read extraline
python3.8-3.8.6/Modules/makesetup:131:			line=`echo $line| sed s/.$//`$extraline
python3.8-3.8.6/Modules/makesetup-132-		done
##############################################
python3.8-3.8.6/Modules/makesetup-177-			*.def)		libs="$libs $arg";;
python3.8-3.8.6/Modules/makesetup:178:			*.o)		srcs="$srcs `basename $arg .o`.c";;
python3.8-3.8.6/Modules/makesetup-179-			*.[cC])		srcs="$srcs $arg";;
##############################################
python3.8-3.8.6/Modules/makesetup-215-			case $src in
python3.8-3.8.6/Modules/makesetup:216:			*.c)   obj=`basename $src .c`.o; cc='$(CC)';;
python3.8-3.8.6/Modules/makesetup:217:			*.cc)  obj=`basename $src .cc`.o; cc='$(CXX)';;
python3.8-3.8.6/Modules/makesetup:218:			*.c++) obj=`basename $src .c++`.o; cc='$(CXX)';;
python3.8-3.8.6/Modules/makesetup:219:			*.C)   obj=`basename $src .C`.o; cc='$(CXX)';;
python3.8-3.8.6/Modules/makesetup:220:			*.cxx) obj=`basename $src .cxx`.o; cc='$(CXX)';;
python3.8-3.8.6/Modules/makesetup:221:			*.cpp) obj=`basename $src .cpp`.o; cc='$(CXX)';;
python3.8-3.8.6/Modules/makesetup:222:			*.m)   obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C
python3.8-3.8.6/Modules/makesetup-223-			*)     continue;;
##############################################
python3.8-3.8.6/Modules/overlapped.c-661-static PyObject *
python3.8-3.8.6/Modules/overlapped.c:662:make_ipv4_addr(const struct sockaddr_in *addr)
python3.8-3.8.6/Modules/overlapped.c-663-{
##############################################
python3.8-3.8.6/Modules/overlapped.c-674-static PyObject *
python3.8-3.8.6/Modules/overlapped.c:675:make_ipv6_addr(const struct sockaddr_in6 *addr)
python3.8-3.8.6/Modules/overlapped.c-676-{
##############################################
python3.8-3.8.6/Modules/overlapped.c-687-{
python3.8-3.8.6/Modules/overlapped.c:688:        /* The function is adopted from mocketmodule.c makesockaddr()*/
python3.8-3.8.6/Modules/overlapped.c-689-
##############################################
python3.8-3.8.6/Modules/overlapped.c-692-            const struct sockaddr_in *a = (const struct sockaddr_in *)Address;
python3.8-3.8.6/Modules/overlapped.c:693:            PyObject *addrobj = make_ipv4_addr(a);
python3.8-3.8.6/Modules/overlapped.c-694-            PyObject *ret = NULL;
##############################################
python3.8-3.8.6/Modules/overlapped.c-702-            const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)Address;
python3.8-3.8.6/Modules/overlapped.c:703:            PyObject *addrobj = make_ipv6_addr(a);
python3.8-3.8.6/Modules/overlapped.c-704-            PyObject *ret = NULL;
##############################################
python3.8-3.8.6/PCbuild/tcl.vcxproj-55-    <TclOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TclOpts>
python3.8-3.8.6/PCbuild/tcl.vcxproj:56:    <TclDirs>BUILDDIRTOP="$(BuildDirTop)" INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs>
python3.8-3.8.6/PCbuild/tcl.vcxproj-57-    <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
##############################################
python3.8-3.8.6/PCbuild/sqlite3.vcxproj-90-    <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
python3.8-3.8.6/PCbuild/sqlite3.vcxproj:91:    <_SqliteVersion>$([System.Text.RegularExpressions.Regex]::Match(`$(sqlite3Dir)`, `((\d+)\.(\d+)\.(\d+)\.(\d+))\\?$`).Groups)</_SqliteVersion>
python3.8-3.8.6/PCbuild/sqlite3.vcxproj-92-    <SqliteVersion>$(_SqliteVersion.Split(`;`)[1])</SqliteVersion>
##############################################
python3.8-3.8.6/PCbuild/python.props-56-    <ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir>
python3.8-3.8.6/PCbuild/python.props:57:    <ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir>
python3.8-3.8.6/PCbuild/python.props-58-    <ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir>
##############################################
python3.8-3.8.6/PCbuild/python.props-132-    -->
python3.8-3.8.6/PCbuild/python.props:133:    <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent>
python3.8-3.8.6/PCbuild/python.props-134-    <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber>
##############################################
python3.8-3.8.6/PCbuild/prepare_libffi.bat-85-%SH% --login -lc "cygcheck -dc cygwin"
python3.8-3.8.6/PCbuild/prepare_libffi.bat:86:set GET_MSVCC=%SH% -lc "cd $OLDPWD; export MSVCC=`/usr/bin/find $PWD -name msvcc.sh`; echo ${MSVCC};"
python3.8-3.8.6/PCbuild/prepare_libffi.bat-87-FOR /F "usebackq delims==" %%i IN (`%GET_MSVCC%`) do @set MSVCC=%%i
##############################################
python3.8-3.8.6/PCbuild/prepare_libffi.bat-174-    echo "Running tests..."
python3.8-3.8.6/PCbuild/prepare_libffi.bat:175:    %SH% -lc "(cd $OLDPWD; export PATH=/usr/bin:$PATH; cp `find $PWD -name 'libffi-?.dll'` $HOST/testsuite/; make check; cat `find ./ -name libffi.log`)"
python3.8-3.8.6/PCbuild/prepare_libffi.bat-176-) else (
##############################################
python3.8-3.8.6/PCbuild/openssl.vcxproj-69-cd /D "$(IntDir.TrimEnd('\'))"
python3.8-3.8.6/PCbuild/openssl.vcxproj:70:$(Perl) "$(opensslDir)\configure" $(OpenSSLPlatform) no-asm
python3.8-3.8.6/PCbuild/openssl.vcxproj-71-nmake
##############################################
python3.8-3.8.6/PCbuild/tk.vcxproj-56-    <TkOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TkOpts>
python3.8-3.8.6/PCbuild/tk.vcxproj:57:    <TkDirs>BUILDDIRTOP="$(BuildDirTop)" TCLDIR="$(tclDir.TrimEnd(`\`))" INSTALLDIR="$(OutDir.TrimEnd(`\`))"</TkDirs>
python3.8-3.8.6/PCbuild/tk.vcxproj-58-    <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags>
##############################################
python3.8-3.8.6/PCbuild/_freeze_importlib.vcxproj-139-          DestinationFiles="%(None.OutFile)"
python3.8-3.8.6/PCbuild/_freeze_importlib.vcxproj:140:          Condition="!Exists(%(None.OutFile)) or (Exists(%(None.IntFile)) and '$([System.IO.File]::ReadAllText(%(None.OutFile)).Replace(`&#x0D;&#x0A;`, `&#x0A;`))' != '$([System.IO.File]::ReadAllText(%(None.IntFile)).Replace(`&#x0D;&#x0A;`, `&#x0A;`))')">
python3.8-3.8.6/PCbuild/_freeze_importlib.vcxproj-141-      <Output TaskParameter="CopiedFiles" ItemName="_Updated" />
##############################################
python3.8-3.8.6/PCbuild/python3dll.vcxproj-145-      <_Lines Include="@(_DefLines)">
python3.8-3.8.6/PCbuild/python3dll.vcxproj:146:        <New>$([System.Text.RegularExpressions.Regex]::Replace($([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern1)`, `$(_Sub1)`)), `$(_Pattern2)`, `$(_Sub2)`))</New>
python3.8-3.8.6/PCbuild/python3dll.vcxproj-147-      </_Lines>
##############################################
python3.8-3.8.6/PCbuild/python3dll.vcxproj-172-      <_Lines Include="EXPORTS" />
python3.8-3.8.6/PCbuild/python3dll.vcxproj:173:      <_Symbols Include="@(_DefLines)" Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(`%(Identity)`, `$(_Pattern)`))">
python3.8-3.8.6/PCbuild/python3dll.vcxproj:174:        <Symbol>$([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern)`, `$(_Sub)`))</Symbol>
python3.8-3.8.6/PCbuild/python3dll.vcxproj-175-      </_Symbols>
##############################################
python3.8-3.8.6/PCbuild/tix.vcxproj-55-  <PropertyGroup>
python3.8-3.8.6/PCbuild/tix.vcxproj:56:    <TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs>
python3.8-3.8.6/PCbuild/tix.vcxproj-57-    <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 TCL_DBGX=g TK_DBGX=g</DebugFlags>
##############################################
python3.8-3.8.6/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
python3.8-3.8.6/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
python3.8-3.8.6/configure-47-  as_echo='print -r --'
python3.8-3.8.6/configure-48-  as_echo_n='print -rn --'
python3.8-3.8.6/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
python3.8-3.8.6/configure-50-  as_echo='printf %s\n'
##############################################
python3.8-3.8.6/configure-52-else
python3.8-3.8.6/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
python3.8-3.8.6/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
python3.8-3.8.6/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
python3.8-3.8.6/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
python3.8-3.8.6/configure-64-      esac;
##############################################
python3.8-3.8.6/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
python3.8-3.8.6/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
python3.8-3.8.6/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
python3.8-3.8.6/configure-327-      case $as_dir in #(
python3.8-3.8.6/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
python3.8-3.8.6/configure-329-      *) as_qdir=$as_dir;;
##############################################
python3.8-3.8.6/configure-400-  {
python3.8-3.8.6/configure:401:    as_val=`expr "$@" || test $? -eq 1`
python3.8-3.8.6/configure-402-  }
##############################################
python3.8-3.8.6/configure-407-# ----------------------------------------
python3.8-3.8.6/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
python3.8-3.8.6/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
python3.8-3.8.6/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
python3.8-3.8.6/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
python3.8-3.8.6/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
python3.8-3.8.6/configure-924-  case $ac_option in
python3.8-3.8.6/configure:925:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
python3.8-3.8.6/configure-926-  *=)   ac_optarg= ;;
##############################################
python3.8-3.8.6/configure-968-  -disable-* | --disable-*)
python3.8-3.8.6/configure:969:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
python3.8-3.8.6/configure-970-    # Reject names that are not valid shell variable names.
##############################################
python3.8-3.8.6/configure-973-    ac_useropt_orig=$ac_useropt
python3.8-3.8.6/configure:974:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
python3.8-3.8.6/configure-975-    case $ac_user_opts in
##############################################
python3.8-3.8.6/configure-994-  -enable-* | --enable-*)
python3.8-3.8.6/configure:995:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
python3.8-3.8.6/configure-996-    # Reject names that are not valid shell variable names.
##############################################
python3.8-3.8.6/configure-999-    ac_useropt_orig=$ac_useropt
python3.8-3.8.6/configure:1000:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
python3.8-3.8.6/configure-1001-    case $ac_user_opts in
##############################################
python3.8-3.8.6/configure-1207-  -with-* | --with-*)
python3.8-3.8.6/configure:1208:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
python3.8-3.8.6/configure-1209-    # Reject names that are not valid shell variable names.
##############################################
python3.8-3.8.6/configure-1212-    ac_useropt_orig=$ac_useropt
python3.8-3.8.6/configure:1213:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
python3.8-3.8.6/configure-1214-    case $ac_user_opts in
##############################################
python3.8-3.8.6/configure-1223-  -without-* | --without-*)
python3.8-3.8.6/configure:1224:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
python3.8-3.8.6/configure-1225-    # Reject names that are not valid shell variable names.
##############################################
python3.8-3.8.6/configure-1228-    ac_useropt_orig=$ac_useropt
python3.8-3.8.6/configure:1229:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
python3.8-3.8.6/configure-1230-    case $ac_user_opts in
##############################################
python3.8-3.8.6/configure-1261-  *=*)
python3.8-3.8.6/configure:1262:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
python3.8-3.8.6/configure-1263-    # Reject names that are not valid shell variable names.
##############################################
python3.8-3.8.6/configure-1282-if test -n "$ac_prev"; then
python3.8-3.8.6/configure:1283:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
python3.8-3.8.6/configure-1284-  as_fn_error $? "missing argument to $ac_option"
##############################################
python3.8-3.8.6/configure-1304-    */ )
python3.8-3.8.6/configure:1305:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
python3.8-3.8.6/configure-1306-      eval $ac_var=\$ac_val;;
##############################################
python3.8-3.8.6/configure-1339-ac_ls_di=`ls -di .` &&
python3.8-3.8.6/configure:1340:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
python3.8-3.8.6/configure-1341-  as_fn_error $? "working directory cannot be determined"
##############################################
python3.8-3.8.6/configure-1395-case $srcdir in
python3.8-3.8.6/configure:1396:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
python3.8-3.8.6/configure-1397-esac
##############################################
python3.8-3.8.6/configure-1438-By default, \`make install' will install all the files in
python3.8-3.8.6/configure:1439:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
python3.8-3.8.6/configure:1440:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
python3.8-3.8.6/configure-1441-for instance \`--prefix=\$HOME'.
##############################################
python3.8-3.8.6/configure-1601-*)
python3.8-3.8.6/configure:1602:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
python3.8-3.8.6/configure-1603-  # A ".." for each directory in $ac_dir_suffix.
python3.8-3.8.6/configure:1604:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
python3.8-3.8.6/configure-1605-  case $ac_top_builddir_sub in
##############################################
python3.8-3.8.6/configure-2258-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
python3.8-3.8.6/configure:2259:  as_decl_name=`echo $2|sed 's/ *(.*//'`
python3.8-3.8.6/configure:2260:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
python3.8-3.8.6/configure-2261-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
python3.8-3.8.6/configure-2429-    *\'*)
python3.8-3.8.6/configure:2430:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
python3.8-3.8.6/configure-2431-    esac
##############################################
python3.8-3.8.6/configure-2512-      case $ac_val in
python3.8-3.8.6/configure:2513:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
python3.8-3.8.6/configure-2514-      esac
##############################################
python3.8-3.8.6/configure-2527-	case $ac_val in
python3.8-3.8.6/configure:2528:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
python3.8-3.8.6/configure-2529-	esac
##############################################
python3.8-3.8.6/configure-2647-    set,)
python3.8-3.8.6/configure:2648:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
python3.8-3.8.6/configure:2649:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
python3.8-3.8.6/configure-2650-      ac_cache_corrupted=: ;;
##############################################
python3.8-3.8.6/configure-2658-	# differences in whitespace do not lead to failure.
python3.8-3.8.6/configure:2659:	ac_old_val_w=`echo x $ac_old_val`
python3.8-3.8.6/configure:2660:	ac_new_val_w=`echo x $ac_new_val`
python3.8-3.8.6/configure-2661-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
python3.8-3.8.6/configure-2678-    case $ac_new_val in
python3.8-3.8.6/configure:2679:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
python3.8-3.8.6/configure-2680-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
python3.8-3.8.6/configure-2826-test "x$ac_build_alias" = x &&
python3.8-3.8.6/configure:2827:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
python3.8-3.8.6/configure-2828-test "x$ac_build_alias" = x &&
python3.8-3.8.6/configure-2829-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
python3.8-3.8.6/configure:2830:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
python3.8-3.8.6/configure-2831-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
python3.8-3.8.6/configure-2850-IFS=$ac_save_IFS
python3.8-3.8.6/configure:2851:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
python3.8-3.8.6/configure-2852-
##############################################
python3.8-3.8.6/configure-2861-else
python3.8-3.8.6/configure:2862:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
python3.8-3.8.6/configure-2863-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
python3.8-3.8.6/configure-2883-IFS=$ac_save_IFS
python3.8-3.8.6/configure:2884:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
python3.8-3.8.6/configure-2885-
##############################################
python3.8-3.8.6/configure-2964-if test "$prefix" != "/"; then
python3.8-3.8.6/configure:2965:    prefix=`echo "$prefix" | sed -e 's/\/$//g'`
python3.8-3.8.6/configure-2966-fi
##############################################
python3.8-3.8.6/configure-3079-	then
python3.8-3.8.6/configure:3080:		if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
python3.8-3.8.6/configure-3081-		then
##############################################
python3.8-3.8.6/configure-3112-    PYTHONFRAMEWORKDIR=${withval}.framework
python3.8-3.8.6/configure:3113:    PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr 'A-Z' 'a-z'`
python3.8-3.8.6/configure-3114-
##############################################
python3.8-3.8.6/configure-3178-		*/Library/Frameworks)
python3.8-3.8.6/configure:3179:			MDIR="`dirname "${enableval}"`"
python3.8-3.8.6/configure:3180:			MDIR="`dirname "${MDIR}"`"
python3.8-3.8.6/configure-3181-			FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
##############################################
python3.8-3.8.6/configure-3524-		then
python3.8-3.8.6/configure:3525:			if test -n "`"$found_gcc" --version | grep llvm-gcc`"
python3.8-3.8.6/configure-3526-			then
##############################################
python3.8-3.8.6/configure-3901-$as_echo_n "checking whether the C compiler works... " >&6; }
python3.8-3.8.6/configure:3902:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
python3.8-3.8.6/configure-3903-
##############################################
python3.8-3.8.6/configure-3945-	then :; else
python3.8-3.8.6/configure:3946:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
python3.8-3.8.6/configure-3947-	fi
##############################################
python3.8-3.8.6/configure-4005-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
python3.8-3.8.6/configure:4006:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
python3.8-3.8.6/configure-4007-	  break;;
##############################################
python3.8-3.8.6/configure-4114-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
python3.8-3.8.6/configure:4115:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
python3.8-3.8.6/configure-4116-       break;;
##############################################
python3.8-3.8.6/configure-4500-  # Check for GNU $ac_path_GREP
python3.8-3.8.6/configure:4501:case `"$ac_path_GREP" --version 2>&1` in
python3.8-3.8.6/configure-4502-*GNU*)
##############################################
python3.8-3.8.6/configure-4569-  # Check for GNU $ac_path_SED
python3.8-3.8.6/configure:4570:case `"$ac_path_SED" --version 2>&1` in
python3.8-3.8.6/configure-4571-*GNU*)
##############################################
python3.8-3.8.6/configure-5321-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
python3.8-3.8.6/configure:5322:  PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' 	'`
python3.8-3.8.6/configure-5323-  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PLATFORM_TRIPLET" >&5
##############################################
python3.8-3.8.6/configure-5398-  # Check for GNU $ac_path_EGREP
python3.8-3.8.6/configure:5399:case `"$ac_path_EGREP" --version 2>&1` in
python3.8-3.8.6/configure-5400-*GNU*)
##############################################
python3.8-3.8.6/configure-5559-do :
python3.8-3.8.6/configure:5560:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
python3.8-3.8.6/configure-5561-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
python3.8-3.8.6/configure-5564-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:5565:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
python3.8-3.8.6/configure-5566-_ACEOF
##############################################
python3.8-3.8.6/configure-5808-if test "$GCC" = yes; then
python3.8-3.8.6/configure:5809:       ac_prog=`$CC -print-prog-name=ld`
python3.8-3.8.6/configure-5810-fi
python3.8-3.8.6/configure:5811:case `"$ac_prog" -V 2>&1 < /dev/null` in
python3.8-3.8.6/configure-5812-      *GNU*)
##############################################
python3.8-3.8.6/configure-6295-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
python3.8-3.8.6/configure:6296:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
python3.8-3.8.6/configure-6297-	     'mkdir (GNU coreutils) '* | \
##############################################
python3.8-3.8.6/configure-6472-  then
python3.8-3.8.6/configure:6473:    clang_dir=`dirname "${clang_bin}"`
python3.8-3.8.6/configure:6474:    clang_bin=`readlink "${clang_bin}"`
python3.8-3.8.6/configure:6475:    llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
python3.8-3.8.6/configure-6476-    llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
##############################################
python3.8-3.8.6/configure-7262-        test "$Py_DEBUG" != "true" && \
python3.8-3.8.6/configure:7263:        test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
python3.8-3.8.6/configure-7264-    then
##############################################
python3.8-3.8.6/configure-7902-do :
python3.8-3.8.6/configure:7903:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
python3.8-3.8.6/configure-7904-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
python3.8-3.8.6/configure-7906-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:7907:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
python3.8-3.8.6/configure-7908-_ACEOF
##############################################
python3.8-3.8.6/configure-7915-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
python3.8-3.8.6/configure:7916:  as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
python3.8-3.8.6/configure-7917-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5
##############################################
python3.8-3.8.6/configure-7947-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:7948:#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1
python3.8-3.8.6/configure-7949-_ACEOF
##############################################
python3.8-3.8.6/configure-8232-do :
python3.8-3.8.6/configure:8233:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
python3.8-3.8.6/configure-8234-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "
##############################################
python3.8-3.8.6/configure-8241-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:8242:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
python3.8-3.8.6/configure-8243-_ACEOF
##############################################
python3.8-3.8.6/configure-9433-	FreeBSD*)
python3.8-3.8.6/configure:9434:		if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
python3.8-3.8.6/configure-9435-		then
##############################################
python3.8-3.8.6/configure-9441-	OpenBSD*)
python3.8-3.8.6/configure:9442:		if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
python3.8-3.8.6/configure-9443-		then
##############################################
python3.8-3.8.6/configure-9549-	FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
python3.8-3.8.6/configure:9550:		if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
python3.8-3.8.6/configure-9551-		then
##############################################
python3.8-3.8.6/configure-9756-do :
python3.8-3.8.6/configure:9757:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
python3.8-3.8.6/configure-9758-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
python3.8-3.8.6/configure-9760-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:9761:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
python3.8-3.8.6/configure-9762-_ACEOF
##############################################
python3.8-3.8.6/configure-10404-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
python3.8-3.8.6/configure:10405:    LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
python3.8-3.8.6/configure-10406-else
##############################################
python3.8-3.8.6/configure-10512-else
python3.8-3.8.6/configure:10513:  for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
python3.8-3.8.6/configure-10514-    if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
##############################################
python3.8-3.8.6/configure-11530-do :
python3.8-3.8.6/configure:11531:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
python3.8-3.8.6/configure-11532-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
python3.8-3.8.6/configure-11534-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:11535:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
python3.8-3.8.6/configure-11536-_ACEOF
##############################################
python3.8-3.8.6/configure-12654-do :
python3.8-3.8.6/configure:12655:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
python3.8-3.8.6/configure-12656-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
python3.8-3.8.6/configure-12658-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:12659:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
python3.8-3.8.6/configure-12660-_ACEOF
##############################################
python3.8-3.8.6/configure-14502-do :
python3.8-3.8.6/configure:14503:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
python3.8-3.8.6/configure-14504-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
python3.8-3.8.6/configure-14506-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:14507:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
python3.8-3.8.6/configure-14508-_ACEOF
##############################################
python3.8-3.8.6/configure-14514-do :
python3.8-3.8.6/configure:14515:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
python3.8-3.8.6/configure-14516-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
python3.8-3.8.6/configure-14518-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:14519:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
python3.8-3.8.6/configure-14520-_ACEOF
##############################################
python3.8-3.8.6/configure-15176-$as_echo_n "checking SOABI... " >&6; }
python3.8-3.8.6/configure:15177:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/configure-15178-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $SOABI" >&5
##############################################
python3.8-3.8.6/configure-15184-
python3.8-3.8.6/configure:15185:  ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/configure-15186-
##############################################
python3.8-3.8.6/configure-15925-do :
python3.8-3.8.6/configure:15926:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
python3.8-3.8.6/configure-15927-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
python3.8-3.8.6/configure-15929-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:15930:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
python3.8-3.8.6/configure-15931-_ACEOF
##############################################
python3.8-3.8.6/configure-16644-
python3.8-3.8.6/configure:16645:for h in `(cd $srcdir;echo Python/thread_*.h)`
python3.8-3.8.6/configure-16646-do
##############################################
python3.8-3.8.6/configure-16756-              int r;
python3.8-3.8.6/configure:16757:              asm ( "movl \$6, (%1)\n\t"
python3.8-3.8.6/configure-16758-                    "xorl %0, %0\n\t"
##############################################
python3.8-3.8.6/configure-17079-do :
python3.8-3.8.6/configure:17080:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
python3.8-3.8.6/configure-17081-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
python3.8-3.8.6/configure-17083-  cat >>confdefs.h <<_ACEOF
python3.8-3.8.6/configure:17084:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
python3.8-3.8.6/configure-17085-_ACEOF
##############################################
python3.8-3.8.6/configure-17205-            if test x"$PKG_CONFIG" != x""; then
python3.8-3.8.6/configure:17206:                OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null`
python3.8-3.8.6/configure-17207-                if test $? = 0; then
python3.8-3.8.6/configure:17208:                    OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null`
python3.8-3.8.6/configure:17209:                    OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null`
python3.8-3.8.6/configure-17210-                    found=true
##############################################
python3.8-3.8.6/configure-17497-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
python3.8-3.8.6/configure:17498:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
python3.8-3.8.6/configure-17499-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
python3.8-3.8.6/configure-17565-if test -z "$BASH_VERSION$ZSH_VERSION" \
python3.8-3.8.6/configure:17566:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
python3.8-3.8.6/configure-17567-  as_echo='print -r --'
python3.8-3.8.6/configure-17568-  as_echo_n='print -rn --'
python3.8-3.8.6/configure:17569:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
python3.8-3.8.6/configure-17570-  as_echo='printf %s\n'
##############################################
python3.8-3.8.6/configure-17572-else
python3.8-3.8.6/configure:17573:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
python3.8-3.8.6/configure-17574-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
python3.8-3.8.6/configure-17582-	expr "X$arg" : "X\\(.*\\)$as_nl";
python3.8-3.8.6/configure:17583:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
python3.8-3.8.6/configure-17584-      esac;
##############################################
python3.8-3.8.6/configure-17659-# ----------------------------------------
python3.8-3.8.6/configure:17660:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
python3.8-3.8.6/configure-17661-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
python3.8-3.8.6/configure-17731-  {
python3.8-3.8.6/configure:17732:    as_val=`expr "$@" || test $? -eq 1`
python3.8-3.8.6/configure-17733-  }
##############################################
python3.8-3.8.6/configure-17835-      case $as_dir in #(
python3.8-3.8.6/configure:17836:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
python3.8-3.8.6/configure-17837-      *) as_qdir=$as_dir;;
##############################################
python3.8-3.8.6/configure-17966-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
python3.8-3.8.6/configure:17967:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
python3.8-3.8.6/configure-17968-ac_cs_version="\\
##############################################
python3.8-3.8.6/configure-17990-  --*=?*)
python3.8-3.8.6/configure:17991:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
python3.8-3.8.6/configure:17992:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
python3.8-3.8.6/configure-17993-    ac_shift=:
##############################################
python3.8-3.8.6/configure-17995-  --*=)
python3.8-3.8.6/configure:17996:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
python3.8-3.8.6/configure-17997-    ac_optarg=
##############################################
python3.8-3.8.6/configure-18019-    case $ac_optarg in
python3.8-3.8.6/configure:18020:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
python3.8-3.8.6/configure-18021-    '') as_fn_error $? "missing file argument" ;;
##############################################
python3.8-3.8.6/configure-18027-    case $ac_optarg in
python3.8-3.8.6/configure:18028:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
python3.8-3.8.6/configure-18029-    esac
##############################################
python3.8-3.8.6/configure-18156-fi
python3.8-3.8.6/configure:18157:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
python3.8-3.8.6/configure-18158-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
python3.8-3.8.6/configure-18173-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
python3.8-3.8.6/configure:18174:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
python3.8-3.8.6/configure-18175-ac_delim='%!_!# '
##############################################
python3.8-3.8.6/configure-18179-
python3.8-3.8.6/configure:18180:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
python3.8-3.8.6/configure-18181-  if test $ac_delim_n = $ac_delim_num; then
##############################################
python3.8-3.8.6/configure-18317-for ac_last_try in false false :; do
python3.8-3.8.6/configure:18318:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
python3.8-3.8.6/configure-18319-  if test -z "$ac_tt"; then
##############################################
python3.8-3.8.6/configure-18449-      esac
python3.8-3.8.6/configure:18450:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
python3.8-3.8.6/configure-18451-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
python3.8-3.8.6/configure-18508-*)
python3.8-3.8.6/configure:18509:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
python3.8-3.8.6/configure-18510-  # A ".." for each directory in $ac_dir_suffix.
python3.8-3.8.6/configure:18511:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
python3.8-3.8.6/configure-18512-  case $ac_top_builddir_sub in
##############################################
python3.8-3.8.6/configure-18569-/@mandir@/p'
python3.8-3.8.6/configure:18570:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
python3.8-3.8.6/configure-18571-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
python3.8-3.8.6/configure-18586-
python3.8-3.8.6/configure:18587:# Neutralize VPATH when `$srcdir' = `.'.
python3.8-3.8.6/configure-18588-# Shell code in configure.ac might set extrasub.
##############################################
python3.8-3.8.6/configure-18614-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
python3.8-3.8.6/configure:18615:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
python3.8-3.8.6/configure-18616-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
python3.8-3.8.6/aclocal.m4-123-    PKG_CHECK_EXISTS([$3],
python3.8-3.8.6/aclocal.m4:124:                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
python3.8-3.8.6/aclocal.m4-125-		      test "x$?" != "x0" && pkg_failed=yes ],
##############################################
python3.8-3.8.6/aclocal.m4-171-        if test $_pkg_short_errors_supported = yes; then
python3.8-3.8.6/aclocal.m4:172:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
python3.8-3.8.6/aclocal.m4-173-        else 
python3.8-3.8.6/aclocal.m4:174:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
python3.8-3.8.6/aclocal.m4-175-        fi
##############################################
python3.8-3.8.6/Mac/PythonLauncher/Makefile.in-75-Info.plist: $(srcdir)/Info.plist.in
python3.8-3.8.6/Mac/PythonLauncher/Makefile.in:76:	sed 's/%VERSION%/'"`$(RUNSHARED) $(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(srcdir)/Info.plist.in > Info.plist
##############################################
python3.8-3.8.6/Mac/README.rst-248-
python3.8-3.8.6/Mac/README.rst:249:Installing in another place, for instance ``$HOME/Library/Frameworks`` if you
python3.8-3.8.6/Mac/README.rst-250-have no admin privileges on your machine, is possible. This can be accomplished
python3.8-3.8.6/Mac/README.rst:251:by configuring with ``--enable-framework=$HOME/Library/Frameworks``.
python3.8-3.8.6/Mac/README.rst-252-The other two directories will then also be installed in your home directory,
python3.8-3.8.6/Mac/README.rst:253:at ``$HOME/Applications/Python-<VERSION>`` and ``$HOME/bin``.
python3.8-3.8.6/Mac/README.rst-254-
##############################################
python3.8-3.8.6/Mac/BuildScript/build-installer.py-796-    # unilaterally disable assembly code building to avoid the problem.
python3.8-3.8.6/Mac/BuildScript/build-installer.py:797:    no_asm = int(platform.release().split(".")[0]) < 9
python3.8-3.8.6/Mac/BuildScript/build-installer.py-798-
##############################################
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-13-	# we need.
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:14:	theShell="`finger $USER | grep Shell: | head  -1 | awk '{ print $NF }'`"
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-15-
##############################################
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-20-# Make sure the directory ${PYTHON_ROOT}/bin is on the users PATH.
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:21:BSH="`basename "${theShell}"`"
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-22-case "${BSH}" in
##############################################
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-24-	if [ `id -ur` = 0 ]; then
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:25:		P=`su - ${USER} -c 'echo A-X-4-X@@$PATH@@X-4-X-A' | grep 'A-X-4-X@@.*@@X-4-X-A' | sed -e 's/^A-X-4-X@@//g' -e 's/@@X-4-X-A$//g'`
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-26-	else
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:27:		P="`(exec -l ${theShell} -c 'echo $PATH')`"
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-28-	fi
##############################################
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-36-# Now ensure that our bin directory is on $P and before /usr/bin at that
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:37:for elem in `echo $P | tr ':' ' '`
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-38-do
##############################################
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-92-echo "# Setting PATH for Python ${PYVER}" >> "${PR}"
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile:93:echo "# The original version is saved in `basename ${PR}`.pysave" >> "${PR}"
python3.8-3.8.6/Mac/BuildScript/scripts/postflight.patch-profile-94-echo 'PATH="'"${PYTHON_ROOT}/bin"':${PATH}"' >> "${PR}"
##############################################
python3.8-3.8.6/Mac/Makefile.in-222-	sed -e "s!%prefix%!$(prefix)!g" -e 's!%exe%!$(PYTHONFRAMEWORK)!g' < "$(srcdir)/IDLE/IDLE.app/Contents/MacOS/IDLE" > "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app/Contents/MacOS/IDLE"
python3.8-3.8.6/Mac/Makefile.in:223:	sed "s!%version%!`$(RUNSHARED) $(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`!g" < "$(srcdir)/IDLE/IDLE.app/Contents/Info.plist" > "$(DESTDIR)$(PYTHONAPPSDIR)/IDLE.app/Contents/Info.plist"
python3.8-3.8.6/Mac/Makefile.in-224-	if [ -f "$(DESTDIR)$(LIBDEST)/idlelib/config-main.def" ]; then \
##############################################
python3.8-3.8.6/Mac/Tools/pythonw.c-64-
python3.8-3.8.6/Mac/Tools/pythonw.c:65:    if (dladdr(Py_Initialize, &info) == 0) {
python3.8-3.8.6/Mac/Tools/pythonw.c-66-        return NULL;
##############################################
python3.8-3.8.6/config.guess-34-
python3.8-3.8.6/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
python3.8-3.8.6/config.guess-36-
##############################################
python3.8-3.8.6/config.guess-102-: ${TMPDIR=/tmp} ;
python3.8-3.8.6/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
python3.8-3.8.6/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
python3.8-3.8.6/config.guess-151-	EOF
python3.8-3.8.6/config.guess:152:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
python3.8-3.8.6/config.guess-153-
##############################################
python3.8-3.8.6/config.guess-188-	    earmv*)
python3.8-3.8.6/config.guess:189:		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
python3.8-3.8.6/config.guess:190:		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
python3.8-3.8.6/config.guess-191-		machine="${arch}${endian}"-unknown
##############################################
python3.8-3.8.6/config.guess-220-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
python3.8-3.8.6/config.guess:221:		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
python3.8-3.8.6/config.guess-222-		;;
##############################################
python3.8-3.8.6/config.guess-233-	    *)
python3.8-3.8.6/config.guess:234:		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
python3.8-3.8.6/config.guess-235-		;;
##############################################
python3.8-3.8.6/config.guess-280-	*4.0)
python3.8-3.8.6/config.guess:281:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
python3.8-3.8.6/config.guess-282-		;;
python3.8-3.8.6/config.guess-283-	*5.*)
python3.8-3.8.6/config.guess:284:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
python3.8-3.8.6/config.guess-285-		;;
##############################################
python3.8-3.8.6/config.guess-290-	# types through head -n 1, so we only detect the type of CPU 0.
python3.8-3.8.6/config.guess:291:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
python3.8-3.8.6/config.guess-292-	case "$ALPHA_CPU_TYPE" in
##############################################
python3.8-3.8.6/config.guess-328-	# 1.2 uses "1.2" for uname -r.
python3.8-3.8.6/config.guess:329:	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
python3.8-3.8.6/config.guess-330-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
python3.8-3.8.6/config.guess-379-    s390x:SunOS:*:*)
python3.8-3.8.6/config.guess:380:	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-381-	exit ;;
python3.8-3.8.6/config.guess-382-    sun4H:SunOS:5.*:*)
python3.8-3.8.6/config.guess:383:	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-384-	exit ;;
python3.8-3.8.6/config.guess-385-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
python3.8-3.8.6/config.guess:386:	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-387-	exit ;;
##############################################
python3.8-3.8.6/config.guess-404-	fi
python3.8-3.8.6/config.guess:405:	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-406-	exit ;;
##############################################
python3.8-3.8.6/config.guess-410-	# it's likely to be more like Solaris than SunOS4.
python3.8-3.8.6/config.guess:411:	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-412-	exit ;;
##############################################
python3.8-3.8.6/config.guess-419-	# Japanese Language versions have a version number like `4.1.3-JL'.
python3.8-3.8.6/config.guess:420:	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
python3.8-3.8.6/config.guess-421-	exit ;;
##############################################
python3.8-3.8.6/config.guess-425-    sun*:*:4.2BSD:*)
python3.8-3.8.6/config.guess:426:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
python3.8-3.8.6/config.guess-427-	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
##############################################
python3.8-3.8.6/config.guess-507-	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
python3.8-3.8.6/config.guess:508:	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
python3.8-3.8.6/config.guess:509:	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
python3.8-3.8.6/config.guess-510-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
python3.8-3.8.6/config.guess-563-    *:IRIX*:*:*)
python3.8-3.8.6/config.guess:564:	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
python3.8-3.8.6/config.guess-565-	exit ;;
##############################################
python3.8-3.8.6/config.guess-593-EOF
python3.8-3.8.6/config.guess:594:		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
python3.8-3.8.6/config.guess-595-		then
##############################################
python3.8-3.8.6/config.guess-606-    *:AIX:*:[4567])
python3.8-3.8.6/config.guess:607:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
python3.8-3.8.6/config.guess-608-	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
##############################################
python3.8-3.8.6/config.guess-642-    9000/[34678]??:HP-UX:*:*)
python3.8-3.8.6/config.guess:643:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
python3.8-3.8.6/config.guess-644-	case "$UNAME_MACHINE" in
##############################################
python3.8-3.8.6/config.guess-696-EOF
python3.8-3.8.6/config.guess:697:		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
python3.8-3.8.6/config.guess-698-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
python3.8-3.8.6/config.guess-724-    ia64:HP-UX:*:*)
python3.8-3.8.6/config.guess:725:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
python3.8-3.8.6/config.guess-726-	echo ia64-hp-hpux"$HPUX_REV"
##############################################
python3.8-3.8.6/config.guess-754-EOF
python3.8-3.8.6/config.guess:755:	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
python3.8-3.8.6/config.guess-756-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
python3.8-3.8.6/config.guess-825-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
python3.8-3.8.6/config.guess:826:	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
python3.8-3.8.6/config.guess-827-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
python3.8-3.8.6/config.guess-830-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
python3.8-3.8.6/config.guess:831:	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
python3.8-3.8.6/config.guess-832-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
python3.8-3.8.6/config.guess-850-	esac
python3.8-3.8.6/config.guess:851:	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
python3.8-3.8.6/config.guess-852-	exit ;;
##############################################
python3.8-3.8.6/config.guess-886-    prep*:SunOS:5.*:*)
python3.8-3.8.6/config.guess:887:	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
python3.8-3.8.6/config.guess-888-	exit ;;
##############################################
python3.8-3.8.6/config.guess-890-	# the GNU system
python3.8-3.8.6/config.guess:891:	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
python3.8-3.8.6/config.guess-892-	exit ;;
##############################################
python3.8-3.8.6/config.guess-894-	# other systems with GNU libc and userland
python3.8-3.8.6/config.guess:895:	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
python3.8-3.8.6/config.guess-896-	exit ;;
##############################################
python3.8-3.8.6/config.guess-988-EOF
python3.8-3.8.6/config.guess:989:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
python3.8-3.8.6/config.guess-990-	test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
##############################################
python3.8-3.8.6/config.guess-1088-    i*86:*:4.*:*)
python3.8-3.8.6/config.guess:1089:	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
python3.8-3.8.6/config.guess-1090-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
python3.8-3.8.6/config.guess-1291-	fi
python3.8-3.8.6/config.guess:1292:	if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
python3.8-3.8.6/config.guess-1293-	    if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
##############################################
python3.8-3.8.6/config.guess-1389-    *:DragonFly:*:*)
python3.8-3.8.6/config.guess:1390:	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
python3.8-3.8.6/config.guess-1391-	exit ;;
##############################################
python3.8-3.8.6/config.guess-1402-    i*86:skyos:*:*)
python3.8-3.8.6/config.guess:1403:	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
python3.8-3.8.6/config.guess-1404-	exit ;;
##############################################
python3.8-3.8.6/Tools/nuget/make_pkg.proj-28-        <PythonArguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</PythonArguments>
python3.8-3.8.6/Tools/nuget/make_pkg.proj:29:        <PythonArguments>$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</PythonArguments>
python3.8-3.8.6/Tools/nuget/make_pkg.proj-30-        <PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)obj"</PythonArguments>
##############################################
python3.8-3.8.6/Tools/clinic/clinic.py-150-c_keywords = set("""
python3.8-3.8.6/Tools/clinic/clinic.py:151:asm auto break case char const continue default do double
python3.8-3.8.6/Tools/clinic/clinic.py-152-else enum extern float for goto if inline int long
##############################################
python3.8-3.8.6/Tools/msi/make_zip.proj-18-        <Arguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</Arguments>
python3.8-3.8.6/Tools/msi/make_zip.proj:19:        <Arguments>$(Arguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</Arguments>
python3.8-3.8.6/Tools/msi/make_zip.proj-20-        <Arguments>$(Arguments) -t "$(IntermediateOutputPath)\zip_$(ArchName)"</Arguments>
##############################################
python3.8-3.8.6/Tools/msi/msi.targets-59-        <PropertyGroup Condition="'@(WxlTemplate)' != ''">
python3.8-3.8.6/Tools/msi/msi.targets:60:            <_Content>$([System.IO.File]::ReadAllText(%(WxlTemplate.FullPath)).Replace(`{{ShortVersion}}`, `$(MajorVersionNumber).$(MinorVersionNumber)$(PyTestExt)`).Replace(`{{LongVersion}}`, `$(PythonVersion)$(PyTestExt)`).Replace(`{{Bitness}}`, `$(Bitness)`))</_Content>
python3.8-3.8.6/Tools/msi/msi.targets-61-            <_ExistingContent Condition="Exists('$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl')">$([System.IO.File]::ReadAllText($(IntermediateOutputPath)%(WxlTemplate.Filename).wxl))</_ExistingContent>
##############################################
python3.8-3.8.6/Tools/msi/bundle/bundle.targets-20-        <DownloadUrl Condition="'$(DownloadUrl)' == '' and '$(DownloadUrlBase)' != ''">$(DownloadUrlBase.TrimEnd(`/`))/{version}/{arch}{releasename}/{msi}</DownloadUrl>
python3.8-3.8.6/Tools/msi/bundle/bundle.targets:21:        <DefineConstants Condition="'$(DownloadUrl)' != ''">$(DefineConstants);DownloadUrl=$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseLevelName)`).Replace(`{msi}`, `{2}`))</DefineConstants>
python3.8-3.8.6/Tools/msi/bundle/bundle.targets-22-        <DefineConstants Condition="'$(DownloadUrl)' == ''">$(DefineConstants);DownloadUrl={2}</DefineConstants>
##############################################
python3.8-3.8.6/Tools/msi/uploadrelease.proj-19-        <EXETarget>$(DownloadUrlBase.TrimEnd(`/`))/$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</EXETarget>
python3.8-3.8.6/Tools/msi/uploadrelease.proj:20:        <MSITarget>$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseLevelName)`).Replace(`{msi}`, ``).TrimEnd(`/`))</MSITarget>
python3.8-3.8.6/Tools/msi/uploadrelease.proj-21-    </PropertyGroup>
##############################################
python3.8-3.8.6/Tools/msi/msi.props-171-            <_Uuids>@(_Uuid->'("%(Identity)", "$(MajorVersionNumber).$(MinorVersionNumber)/%(Uri)")',',')</_Uuids>
python3.8-3.8.6/Tools/msi/msi.props:172:            <_GenerateCommand>import uuid; print('\n'.join('{}={}'.format(i, uuid.uuid5(uuid.UUID('c8d9733e-a70c-43ff-ab0c-e26456f11083'), '$(ReleaseUri.Replace(`{arch}`, `$(ArchName)`))' + j)) for i,j in [$(_Uuids.Replace(`"`,`'`))]))</_GenerateCommand>
python3.8-3.8.6/Tools/msi/msi.props-173-        </PropertyGroup>
##############################################
python3.8-3.8.6/Tools/scripts/mailerdaemon.py-181-        m = email.message_from_file(fp, _class=ErrorMessage)
python3.8-3.8.6/Tools/scripts/mailerdaemon.py:182:        sender = m.getaddr('From')
python3.8-3.8.6/Tools/scripts/mailerdaemon.py-183-        print('%s\t%-40s\t'%(fn, sender[1]), end=' ')
##############################################
python3.8-3.8.6/Misc/HISTORY-1344-
python3.8-3.8.6/Misc/HISTORY:1345:- Issue #17717: The Windows build scripts now use a copy of NASM pulled from
python3.8-3.8.6/Misc/HISTORY-1346-  svn.python.org to build OpenSSL.
##############################################
python3.8-3.8.6/Misc/HISTORY-4102-
python3.8-3.8.6/Misc/HISTORY:4103:- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast
python3.8-3.8.6/Misc/HISTORY-4104-  64-bit pointer to long (32 bits).
##############################################
python3.8-3.8.6/Misc/HISTORY-6206-
python3.8-3.8.6/Misc/HISTORY:6207:- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1
python3.8-3.8.6/Misc/HISTORY-6208-  on Windows.
##############################################
python3.8-3.8.6/Misc/HISTORY-15453-
python3.8-3.8.6/Misc/HISTORY:15454:- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$`
python3.8-3.8.6/Misc/HISTORY-15455-  in Makefiles. This prevents compile errors when using syntax like:
python3.8-3.8.6/Misc/HISTORY:15456:  `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe.
python3.8-3.8.6/Misc/HISTORY-15457-
##############################################
python3.8-3.8.6/Misc/HISTORY-17540-
python3.8-3.8.6/Misc/HISTORY:17541:- Bug #1535502, build _hashlib on Windows, and use masm assembler
python3.8-3.8.6/Misc/HISTORY-17542-  code in OpenSSL.
##############################################
python3.8-3.8.6/Misc/HISTORY-27550-
python3.8-3.8.6/Misc/HISTORY:27551:	- Modify the gethostbyaddr() code to also hold on to the lock until
python3.8-3.8.6/Misc/HISTORY-27552-	after it is safe to release, overlapping with the Python lock.
##############################################
python3.8-3.8.6/Misc/HISTORY-29125-
python3.8-3.8.6/Misc/HISTORY:29126:- Add a new method of interpreter objects, interpaddr().  This returns
python3.8-3.8.6/Misc/HISTORY-29127-the address of the Tcl interpreter object, as an integer.  Not very
##############################################
python3.8-3.8.6/Misc/HISTORY-29499-support for adding headers, though).  Also fixed a bug where an
python3.8-3.8.6/Misc/HISTORY:29500:illegal address would cause a crash in getrouteaddr(), fixed a
python3.8-3.8.6/Misc/HISTORY-29501-sign reversal in mktime_tz(), and use the local timezone by default
##############################################
python3.8-3.8.6/Misc/HISTORY-30453-
python3.8-3.8.6/Misc/HISTORY:30454:- rfc822.py: Entirely rewritten parseaddr() function by Sjoerd
python3.8-3.8.6/Misc/HISTORY:30455:Mullender, to be closer to the standard.  This fixes the getaddr()
python3.8-3.8.6/Misc/HISTORY-30456-method.  Unfortunately, getaddrlist() is as broken as ever, since it
##############################################
python3.8-3.8.6/Misc/HISTORY-32081-
python3.8-3.8.6/Misc/HISTORY:32082:- Much improved parseaddr() in rfc822.
python3.8-3.8.6/Misc/HISTORY-32083-
##############################################
python3.8-3.8.6/Misc/NEWS-5882-
python3.8-3.8.6/Misc/NEWS:5883:- bpo-34758: Add .wasm -> application/wasm to list of recognized file types
python3.8-3.8.6/Misc/NEWS-5884-  and content type headers
##############################################
python3.8-3.8.6/Misc/NEWS-17254-
python3.8-3.8.6/Misc/NEWS:17255:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and
python3.8-3.8.6/Misc/NEWS-17256-  gethostbyname_ex() functions of the socket module now decode the hostname
##############################################
python3.8-3.8.6/Misc/NEWS-19536-
python3.8-3.8.6/Misc/NEWS:19537:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and
python3.8-3.8.6/Misc/NEWS-19538-  gethostbyname_ex() functions of the socket module now decode the hostname
##############################################
python3.8-3.8.6/Misc/NEWS-23438-
python3.8-3.8.6/Misc/NEWS:23439:- bpo-17717: The Windows build scripts now use a copy of NASM pulled from
python3.8-3.8.6/Misc/NEWS-23440-  svn.python.org to build OpenSSL.
##############################################
python3.8-3.8.6/config.sub-52-
python3.8-3.8.6/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
python3.8-3.8.6/config.sub-54-
##############################################
python3.8-3.8.6/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations.
python3.8-3.8.6/config.sub:115:maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
python3.8-3.8.6/config.sub-116-case $maybe_os in
##############################################
python3.8-3.8.6/config.sub-122-    os=-$maybe_os
python3.8-3.8.6/config.sub:123:    basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
python3.8-3.8.6/config.sub-124-    ;;
##############################################
python3.8-3.8.6/config.sub-126-    os=-linux-android
python3.8-3.8.6/config.sub:127:    basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
python3.8-3.8.6/config.sub-128-    ;;
python3.8-3.8.6/config.sub-129-  *)
python3.8-3.8.6/config.sub:130:    basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
python3.8-3.8.6/config.sub-131-    if [ "$basic_machine" != "$1" ]
python3.8-3.8.6/config.sub:132:    then os=`echo "$1" | sed 's/.*-/-/'`
python3.8-3.8.6/config.sub-133-    else os=; fi
##############################################
python3.8-3.8.6/config.sub-180-		os=-sco5v6
python3.8-3.8.6/config.sub:181:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-182-		;;
##############################################
python3.8-3.8.6/config.sub-184-		os=-sco3.2v5
python3.8-3.8.6/config.sub:185:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-186-		;;
##############################################
python3.8-3.8.6/config.sub-188-		os=-sco3.2v4
python3.8-3.8.6/config.sub:189:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-190-		;;
python3.8-3.8.6/config.sub-191-	-sco3.2.[4-9]*)
python3.8-3.8.6/config.sub:192:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
python3.8-3.8.6/config.sub:193:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-194-		;;
##############################################
python3.8-3.8.6/config.sub-196-		# Don't forget version if it is 3.2v4 or newer.
python3.8-3.8.6/config.sub:197:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-198-		;;
##############################################
python3.8-3.8.6/config.sub-200-		# Don't forget version if it is 3.2v4 or newer.
python3.8-3.8.6/config.sub:201:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-202-		;;
##############################################
python3.8-3.8.6/config.sub-204-		os=-sco3.2v2
python3.8-3.8.6/config.sub:205:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-206-		;;
python3.8-3.8.6/config.sub-207-	-udk*)
python3.8-3.8.6/config.sub:208:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-209-		;;
##############################################
python3.8-3.8.6/config.sub-211-		os=-isc2.2
python3.8-3.8.6/config.sub:212:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-213-		;;
##############################################
python3.8-3.8.6/config.sub-217-	-isc*)
python3.8-3.8.6/config.sub:218:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
python3.8-3.8.6/config.sub-219-		;;
##############################################
python3.8-3.8.6/config.sub-229-	-ptx*)
python3.8-3.8.6/config.sub:230:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'`
python3.8-3.8.6/config.sub-231-		;;
##############################################
python3.8-3.8.6/config.sub-368-	*-*-*)
python3.8-3.8.6/config.sub:369:		echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
python3.8-3.8.6/config.sub-370-		exit 1
##############################################
python3.8-3.8.6/config.sub-497-	amd64-*)
python3.8-3.8.6/config.sub:498:		basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-499-		;;
##############################################
python3.8-3.8.6/config.sub-542-	blackfin-*)
python3.8-3.8.6/config.sub:543:		basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-544-		os=-linux
##############################################
python3.8-3.8.6/config.sub-550-	c54x-*)
python3.8-3.8.6/config.sub:551:		basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-552-		;;
python3.8-3.8.6/config.sub-553-	c55x-*)
python3.8-3.8.6/config.sub:554:		basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-555-		;;
python3.8-3.8.6/config.sub-556-	c6x-*)
python3.8-3.8.6/config.sub:557:		basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-558-		;;
##############################################
python3.8-3.8.6/config.sub-654-	e500v[12]-*)
python3.8-3.8.6/config.sub:655:		basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-656-		os=$os"spe"
##############################################
python3.8-3.8.6/config.sub-758-	i*86v32)
python3.8-3.8.6/config.sub:759:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
python3.8-3.8.6/config.sub-760-		os=-sysv32
##############################################
python3.8-3.8.6/config.sub-762-	i*86v4*)
python3.8-3.8.6/config.sub:763:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
python3.8-3.8.6/config.sub-764-		os=-sysv4
##############################################
python3.8-3.8.6/config.sub-766-	i*86v)
python3.8-3.8.6/config.sub:767:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
python3.8-3.8.6/config.sub-768-		os=-sysv
##############################################
python3.8-3.8.6/config.sub-770-	i*86sol2)
python3.8-3.8.6/config.sub:771:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
python3.8-3.8.6/config.sub-772-		os=-solaris2
##############################################
python3.8-3.8.6/config.sub-796-	leon-*|leon[3-9]-*)
python3.8-3.8.6/config.sub:797:		basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'`
python3.8-3.8.6/config.sub-798-		;;
##############################################
python3.8-3.8.6/config.sub-803-	m68knommu-*)
python3.8-3.8.6/config.sub:804:		basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-805-		os=-linux
##############################################
python3.8-3.8.6/config.sub-837-	mips3*-*)
python3.8-3.8.6/config.sub:838:		basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`
python3.8-3.8.6/config.sub-839-		;;
python3.8-3.8.6/config.sub-840-	mips3*)
python3.8-3.8.6/config.sub:841:		basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown
python3.8-3.8.6/config.sub-842-		;;
##############################################
python3.8-3.8.6/config.sub-859-	ms1-*)
python3.8-3.8.6/config.sub:860:		basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'`
python3.8-3.8.6/config.sub-861-		;;
##############################################
python3.8-3.8.6/config.sub-984-	parisc-*)
python3.8-3.8.6/config.sub:985:		basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-986-		os=-linux
##############################################
python3.8-3.8.6/config.sub-1000-	pc98-*)
python3.8-3.8.6/config.sub:1001:		basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1002-		;;
##############################################
python3.8-3.8.6/config.sub-1015-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
python3.8-3.8.6/config.sub:1016:		basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1017-		;;
python3.8-3.8.6/config.sub-1018-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
python3.8-3.8.6/config.sub:1019:		basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1020-		;;
python3.8-3.8.6/config.sub-1021-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
python3.8-3.8.6/config.sub:1022:		basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1023-		;;
python3.8-3.8.6/config.sub-1024-	pentium4-*)
python3.8-3.8.6/config.sub:1025:		basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1026-		;;
##############################################
python3.8-3.8.6/config.sub-1034-	ppc-* | ppcbe-*)
python3.8-3.8.6/config.sub:1035:		basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1036-		;;
##############################################
python3.8-3.8.6/config.sub-1040-	ppcle-* | powerpclittle-*)
python3.8-3.8.6/config.sub:1041:		basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1042-		;;
##############################################
python3.8-3.8.6/config.sub-1044-		;;
python3.8-3.8.6/config.sub:1045:	ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1046-		;;
##############################################
python3.8-3.8.6/config.sub-1050-	ppc64le-* | powerpc64little-*)
python3.8-3.8.6/config.sub:1051:		basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1052-		;;
##############################################
python3.8-3.8.6/config.sub-1126-	strongarm-* | thumb-*)
python3.8-3.8.6/config.sub:1127:		basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'`
python3.8-3.8.6/config.sub-1128-		;;
##############################################
python3.8-3.8.6/config.sub-1259-	xscale-* | xscalee[bl]-*)
python3.8-3.8.6/config.sub:1260:		basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'`
python3.8-3.8.6/config.sub-1261-		;;
##############################################
python3.8-3.8.6/config.sub-1321-	*)
python3.8-3.8.6/config.sub:1322:		echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
python3.8-3.8.6/config.sub-1323-		exit 1
##############################################
python3.8-3.8.6/config.sub-1329-	*-digital*)
python3.8-3.8.6/config.sub:1330:		basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'`
python3.8-3.8.6/config.sub-1331-		;;
python3.8-3.8.6/config.sub-1332-	*-commodore*)
python3.8-3.8.6/config.sub:1333:		basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'`
python3.8-3.8.6/config.sub-1334-		;;
##############################################
python3.8-3.8.6/config.sub-1350-	-solaris1 | -solaris1.*)
python3.8-3.8.6/config.sub:1351:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
python3.8-3.8.6/config.sub-1352-		;;
##############################################
python3.8-3.8.6/config.sub-1359-	-gnu/linux*)
python3.8-3.8.6/config.sub:1360:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
python3.8-3.8.6/config.sub-1361-		;;
##############################################
python3.8-3.8.6/config.sub-1411-	-nto*)
python3.8-3.8.6/config.sub:1412:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
python3.8-3.8.6/config.sub-1413-		;;
##############################################
python3.8-3.8.6/config.sub-1418-	-mac*)
python3.8-3.8.6/config.sub:1419:		os=`echo "$os" | sed -e 's|mac|macos|'`
python3.8-3.8.6/config.sub-1420-		;;
##############################################
python3.8-3.8.6/config.sub-1424-	-linux*)
python3.8-3.8.6/config.sub:1425:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
python3.8-3.8.6/config.sub-1426-		;;
python3.8-3.8.6/config.sub-1427-	-sunos5*)
python3.8-3.8.6/config.sub:1428:		os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
python3.8-3.8.6/config.sub-1429-		;;
python3.8-3.8.6/config.sub-1430-	-sunos6*)
python3.8-3.8.6/config.sub:1431:		os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
python3.8-3.8.6/config.sub-1432-		;;
##############################################
python3.8-3.8.6/config.sub-1473-	-sinix5.*)
python3.8-3.8.6/config.sub:1474:		os=`echo $os | sed -e 's|sinix|sysv|'`
python3.8-3.8.6/config.sub-1475-		;;
##############################################
python3.8-3.8.6/config.sub-1532-		# Get rid of the `-' at the beginning of $os.
python3.8-3.8.6/config.sub:1533:		os=`echo $os | sed 's/[^-]*-//'`
python3.8-3.8.6/config.sub:1534:		echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
python3.8-3.8.6/config.sub-1535-		exit 1
##############################################
python3.8-3.8.6/config.sub-1792-		esac
python3.8-3.8.6/config.sub:1793:		basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"`
python3.8-3.8.6/config.sub-1794-		;;
##############################################
python3.8-3.8.6/Python/clinic/bltinmodule.c.h-310-PyDoc_STRVAR(builtin_eval__doc__,
python3.8-3.8.6/Python/clinic/bltinmodule.c.h:311:"eval($module, source, globals=None, locals=None, /)\n"
python3.8-3.8.6/Python/clinic/bltinmodule.c.h-312-"--\n"
##############################################
python3.8-3.8.6/Python/clinic/bltinmodule.c.h-356-PyDoc_STRVAR(builtin_exec__doc__,
python3.8-3.8.6/Python/clinic/bltinmodule.c.h:357:"exec($module, source, globals=None, locals=None, /)\n"
python3.8-3.8.6/Python/clinic/bltinmodule.c.h-358-"--\n"
##############################################
python3.8-3.8.6/install-sh-234-      fi
python3.8-3.8.6/install-sh:235:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
python3.8-3.8.6/install-sh-236-    *)
##############################################
python3.8-3.8.6/install-sh-280-      dstdir=$dst
python3.8-3.8.6/install-sh:281:      dstbase=`basename "$src"`
python3.8-3.8.6/install-sh-282-      case $dst in
##############################################
python3.8-3.8.6/install-sh-287-    else
python3.8-3.8.6/install-sh:288:      dstdir=`dirname "$dst"`
python3.8-3.8.6/install-sh-289-      test -d "$dstdir"
##############################################
python3.8-3.8.6/install-sh-354-                   test_tmpdir="$tmpdir/a"
python3.8-3.8.6/install-sh:355:                   ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
python3.8-3.8.6/install-sh-356-                   case $ls_ld_tmpdir in
##############################################
python3.8-3.8.6/install-sh-361-                   $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
python3.8-3.8.6/install-sh:362:                     ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
python3.8-3.8.6/install-sh-363-                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
python3.8-3.8.6/install-sh-419-            case $prefix in
python3.8-3.8.6/install-sh:420:              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
python3.8-3.8.6/install-sh-421-              *) qprefix=$prefix;;
##############################################
python3.8-3.8.6/install-sh-468-    if $copy_on_change &&
python3.8-3.8.6/install-sh:469:       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
python3.8-3.8.6/install-sh:470:       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
python3.8-3.8.6/install-sh-471-       set -f &&
##############################################
python3.8-3.8.6/Lib/smtpd.py-299-    @property
python3.8-3.8.6/Lib/smtpd.py:300:    def __addr(self):
python3.8-3.8.6/Lib/smtpd.py-301-        warn("Access to __addr attribute on SMTPChannel is deprecated, "
##############################################
python3.8-3.8.6/Lib/smtpd.py-304-    @__addr.setter
python3.8-3.8.6/Lib/smtpd.py:305:    def __addr(self, value):
python3.8-3.8.6/Lib/smtpd.py-306-        warn("Setting __addr attribute on SMTPChannel is deprecated, "
##############################################
python3.8-3.8.6/Lib/smtpd.py-444-
python3.8-3.8.6/Lib/smtpd.py:445:    def _getaddr(self, arg):
python3.8-3.8.6/Lib/smtpd.py-446-        if not arg:
##############################################
python3.8-3.8.6/Lib/smtpd.py-448-        if arg.lstrip().startswith('<'):
python3.8-3.8.6/Lib/smtpd.py:449:            address, rest = get_angle_addr(arg)
python3.8-3.8.6/Lib/smtpd.py-450-        else:
##############################################
python3.8-3.8.6/Lib/smtpd.py-503-        if arg:
python3.8-3.8.6/Lib/smtpd.py:504:            address, params = self._getaddr(arg)
python3.8-3.8.6/Lib/smtpd.py-505-            if address:
##############################################
python3.8-3.8.6/Lib/smtpd.py-524-        arg = self._strip_command_keyword('FROM:', arg)
python3.8-3.8.6/Lib/smtpd.py:525:        address, params = self._getaddr(arg)
python3.8-3.8.6/Lib/smtpd.py-526-        if not address:
##############################################
python3.8-3.8.6/Lib/smtpd.py-581-        arg = self._strip_command_keyword('TO:', arg)
python3.8-3.8.6/Lib/smtpd.py:582:        address, params = self._getaddr(arg)
python3.8-3.8.6/Lib/smtpd.py-583-        if not address:
##############################################
python3.8-3.8.6/Lib/smtpd.py-648-            # try to re-use a server port if possible
python3.8-3.8.6/Lib/smtpd.py:649:            self.set_reuse_addr()
python3.8-3.8.6/Lib/smtpd.py-650-            self.bind(localaddr)
##############################################
python3.8-3.8.6/Lib/unittest/test/test_discovery.py-86-        # The test suites found should be sorted alphabetically for reliable
python3.8-3.8.6/Lib/unittest/test/test_discovery.py:87:        # execution order.
python3.8-3.8.6/Lib/unittest/test/test_discovery.py-88-        expected = [[name + ' module tests'] for name in
##############################################
python3.8-3.8.6/Lib/unittest/mock.py-651-                # XXXX should we get the attribute without triggering code
python3.8-3.8.6/Lib/unittest/mock.py:652:                # execution?
python3.8-3.8.6/Lib/unittest/mock.py-653-                wraps = getattr(self._mock_wraps, name)
##############################################
python3.8-3.8.6/Lib/unittest/mock.py-1092-        # needs to be set here so assertions on call arguments pass before
python3.8-3.8.6/Lib/unittest/mock.py:1093:        # execution in the case of awaited calls
python3.8-3.8.6/Lib/unittest/mock.py-1094-        _call = _Call((args, kwargs), two=True)
##############################################
python3.8-3.8.6/Lib/email/_parseaddr.py-299-            # Address is a phrase then a route addr
python3.8-3.8.6/Lib/email/_parseaddr.py:300:            routeaddr = self.getrouteaddr()
python3.8-3.8.6/Lib/email/_parseaddr.py-301-
##############################################
python3.8-3.8.6/Lib/email/_parseaddr.py-318-
python3.8-3.8.6/Lib/email/_parseaddr.py:319:    def getrouteaddr(self):
python3.8-3.8.6/Lib/email/_parseaddr.py-320-        """Parse a route address (Return-path value).
##############################################
python3.8-3.8.6/Lib/email/utils.py-75-
python3.8-3.8.6/Lib/email/utils.py:76:def formataddr(pair, charset='utf-8'):
python3.8-3.8.6/Lib/email/utils.py:77:    """The inverse of parseaddr(), this takes a 2-tuple of the form
python3.8-3.8.6/Lib/email/utils.py-78-    (realname, email_address) and returns the string value suitable
##############################################
python3.8-3.8.6/Lib/email/utils.py-204-
python3.8-3.8.6/Lib/email/utils.py:205:def parseaddr(addr):
python3.8-3.8.6/Lib/email/utils.py-206-    """
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-384-
python3.8-3.8.6/Lib/email/_header_value_parser.py:385:class NameAddr(TokenList):
python3.8-3.8.6/Lib/email/_header_value_parser.py-386-
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-411-
python3.8-3.8.6/Lib/email/_header_value_parser.py:412:class AngleAddr(TokenList):
python3.8-3.8.6/Lib/email/_header_value_parser.py-413-
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1691-
python3.8-3.8.6/Lib/email/_header_value_parser.py:1692:def get_angle_addr(value):
python3.8-3.8.6/Lib/email/_header_value_parser.py-1693-    """ angle-addr = [CFWS] "<" addr-spec ">" [CFWS] / obs-angle-addr
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1696-    """
python3.8-3.8.6/Lib/email/_header_value_parser.py:1697:    angle_addr = AngleAddr()
python3.8-3.8.6/Lib/email/_header_value_parser.py-1698-    if value[0] in CFWS_LEADER:
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1752-
python3.8-3.8.6/Lib/email/_header_value_parser.py:1753:def get_name_addr(value):
python3.8-3.8.6/Lib/email/_header_value_parser.py-1754-    """ name-addr = [display-name] angle-addr
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1756-    """
python3.8-3.8.6/Lib/email/_header_value_parser.py:1757:    name_addr = NameAddr()
python3.8-3.8.6/Lib/email/_header_value_parser.py-1758-    # Both the optional display name and the angle-addr can start with cfws.
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1776-        name_addr.append(token)
python3.8-3.8.6/Lib/email/_header_value_parser.py:1777:    token, value = get_angle_addr(value)
python3.8-3.8.6/Lib/email/_header_value_parser.py-1778-    if leader is not None:
##############################################
python3.8-3.8.6/Lib/email/_header_value_parser.py-1790-    try:
python3.8-3.8.6/Lib/email/_header_value_parser.py:1791:        token, value = get_name_addr(value)
python3.8-3.8.6/Lib/email/_header_value_parser.py-1792-    except errors.HeaderParseError:
##############################################
python3.8-3.8.6/Lib/tkinter/test/test_tkinter/test_loadtk.py-33-                # If that's the case, abort.
python3.8-3.8.6/Lib/tkinter/test/test_tkinter/test_loadtk.py:34:                with os.popen('echo $DISPLAY') as pipe:
python3.8-3.8.6/Lib/tkinter/test/test_tkinter/test_loadtk.py-35-                    display = pipe.read().strip()
##############################################
python3.8-3.8.6/Lib/tkinter/ttk.py-521-            # since it allows doing self.tk.call(self._name, "theme", "use")
python3.8-3.8.6/Lib/tkinter/ttk.py:522:            return self.tk.eval("return $ttk::currentTheme")
python3.8-3.8.6/Lib/tkinter/ttk.py-523-
##############################################
python3.8-3.8.6/Lib/venv/scripts/common/activate-48-# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
python3.8-3.8.6/Lib/venv/scripts/common/activate:49:# could use `if (set -u; : $PYTHONHOME) ;` in bash
python3.8-3.8.6/Lib/venv/scripts/common/activate-50-if [ -n "${PYTHONHOME:-}" ] ; then
##############################################
python3.8-3.8.6/Lib/venv/scripts/common/activate-59-    else
python3.8-3.8.6/Lib/venv/scripts/common/activate:60:    if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
python3.8-3.8.6/Lib/venv/scripts/common/activate-61-        # special case for Aspen magic directories
python3.8-3.8.6/Lib/venv/scripts/common/activate-62-        # see https://aspen.io/
python3.8-3.8.6/Lib/venv/scripts/common/activate:63:        PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
python3.8-3.8.6/Lib/venv/scripts/common/activate-64-    else
python3.8-3.8.6/Lib/venv/scripts/common/activate:65:        PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
python3.8-3.8.6/Lib/venv/scripts/common/activate-66-    fi
##############################################
python3.8-3.8.6/Lib/venv/scripts/posix/activate.csh-25-            # see https://aspen.io/
python3.8-3.8.6/Lib/venv/scripts/posix/activate.csh:26:            set env_name = `basename \`dirname "$VIRTUAL_ENV"\``
python3.8-3.8.6/Lib/venv/scripts/posix/activate.csh-27-        else
python3.8-3.8.6/Lib/venv/scripts/posix/activate.csh:28:            set env_name = `basename "$VIRTUAL_ENV"`
python3.8-3.8.6/Lib/venv/scripts/posix/activate.csh-29-        endif
##############################################
python3.8-3.8.6/Lib/contextlib.py-349-             os.remove(somefile)
python3.8-3.8.6/Lib/contextlib.py:350:         # Execution still resumes here if the file was already removed
python3.8-3.8.6/Lib/contextlib.py-351-    """
##############################################
python3.8-3.8.6/Lib/http/server.py-100-import shutil
python3.8-3.8.6/Lib/http/server.py:101:import socket # For gethostbyaddr()
python3.8-3.8.6/Lib/http/server.py-102-import socketserver
##############################################
python3.8-3.8.6/Lib/importlib/_bootstrap_external.py-646-        if hasattr(loader, 'get_filename'):
python3.8-3.8.6/Lib/importlib/_bootstrap_external.py:647:            # ExecutionLoader
python3.8-3.8.6/Lib/importlib/_bootstrap_external.py-648-            try:
##############################################
python3.8-3.8.6/Lib/profile.py-467-    # effort.  Also note that if too large a value specified, then
python3.8-3.8.6/Lib/profile.py:468:    # execution time on some functions will actually appear as a
python3.8-3.8.6/Lib/profile.py-469-    # negative number.  It is *normal* for some functions (with very
##############################################
python3.8-3.8.6/Lib/smtplib.py-144-
python3.8-3.8.6/Lib/smtplib.py:145:def quoteaddr(addrstring):
python3.8-3.8.6/Lib/smtplib.py-146-    """Quote a subset of the email addresses defined by RFC 821.
##############################################
python3.8-3.8.6/Lib/smtplib.py-149-    """
python3.8-3.8.6/Lib/smtplib.py:150:    displayname, addr = email.utils.parseaddr(addrstring)
python3.8-3.8.6/Lib/smtplib.py-151-    if (displayname, addr) == ('', ''):
##############################################
python3.8-3.8.6/Lib/smtplib.py-158-def _addr_only(addrstring):
python3.8-3.8.6/Lib/smtplib.py:159:    displayname, addr = email.utils.parseaddr(addrstring)
python3.8-3.8.6/Lib/smtplib.py-160-    if (displayname, addr) == ('', ''):
##############################################
python3.8-3.8.6/Lib/smtplib.py-537-            optionlist = ' ' + ' '.join(options)
python3.8-3.8.6/Lib/smtplib.py:538:        self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender), optionlist))
python3.8-3.8.6/Lib/smtplib.py-539-        return self.getreply()
##############################################
python3.8-3.8.6/Lib/smtplib.py-545-            optionlist = ' ' + ' '.join(options)
python3.8-3.8.6/Lib/smtplib.py:546:        self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist))
python3.8-3.8.6/Lib/smtplib.py-547-        return self.getreply()
##############################################
python3.8-3.8.6/Lib/distutils/sysconfig.py-347-            v = v.strip()
python3.8-3.8.6/Lib/distutils/sysconfig.py:348:            # `$$' is a literal `$' in make
python3.8-3.8.6/Lib/distutils/sysconfig.py-349-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/Lib/test/test_asyncore.py-471-        self.create_socket(family)
python3.8-3.8.6/Lib/test/test_asyncore.py:472:        self.set_reuse_addr()
python3.8-3.8.6/Lib/test/test_asyncore.py-473-        bind_af_aware(self.socket, addr)
##############################################
python3.8-3.8.6/Lib/test/test_asyncore.py-747-
python3.8-3.8.6/Lib/test/test_asyncore.py:748:    def test_set_reuse_addr(self):
python3.8-3.8.6/Lib/test/test_asyncore.py-749-        if HAS_UNIX_SOCKETS and self.family == socket.AF_UNIX:
##############################################
python3.8-3.8.6/Lib/test/test_asyncore.py-764-                s.create_socket(self.family)
python3.8-3.8.6/Lib/test/test_asyncore.py:765:                s.set_reuse_addr()
python3.8-3.8.6/Lib/test/test_asyncore.py-766-                self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET,
##############################################
python3.8-3.8.6/Lib/test/test_socketserver.py-91-
python3.8-3.8.6/Lib/test/test_socketserver.py:92:    def pickaddr(self, proto):
python3.8-3.8.6/Lib/test/test_socketserver.py-93-        if proto == socket.AF_INET:
##############################################
python3.8-3.8.6/Lib/test/test_socketserver.py-125-    def run_server(self, svrcls, hdlrbase, testfunc):
python3.8-3.8.6/Lib/test/test_socketserver.py:126:        server = self.make_server(self.pickaddr(svrcls.address_family),
python3.8-3.8.6/Lib/test/test_socketserver.py-127-                                  svrcls, hdlrbase)
##############################################
python3.8-3.8.6/Lib/test/test_socketserver.py-171-            if HAVE_UNIX_SOCKETS and proto == socket.AF_UNIX:
python3.8-3.8.6/Lib/test/test_socketserver.py:172:                s.bind(self.pickaddr(proto))
python3.8-3.8.6/Lib/test/test_socketserver.py-173-            s.sendto(TEST_STR, addr)
##############################################
python3.8-3.8.6/Lib/test/test_grammar.py-326-    def test_var_annot_basic_semantics(self):
python3.8-3.8.6/Lib/test/test_grammar.py:327:        # execution order
python3.8-3.8.6/Lib/test/test_grammar.py-328-        with self.assertRaises(ZeroDivisionError):
##############################################
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py-6-CASES = [
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py:7:    ('/\\"\ucafe\ubabe\uab98\ufcde\ubcda\uef4a\x08\x0c\n\r\t`1~!@#$%^&*()_+-=[]{}|;:\',./<>?', '"/\\\\\\"\\ucafe\\ubabe\\uab98\\ufcde\\ubcda\\uef4a\\b\\f\\n\\r\\t`1~!@#$%^&*()_+-=[]{}|;:\',./<>?"'),
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py-8-    ('\u0123\u4567\u89ab\ucdef\uabcd\uef4a', '"\\u0123\\u4567\\u89ab\\ucdef\\uabcd\\uef4a"'),
##############################################
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py-14-    ('\u03b1\u03a9', '"\\u03b1\\u03a9"'),
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py:15:    ("`1~!@#$%^&*()_+-={':[,]}|;.</>?", '"`1~!@#$%^&*()_+-={\':[,]}|;.</>?"'),
python3.8-3.8.6/Lib/test/test_json/test_encode_basestring_ascii.py-16-    ('\x08\x0c\n\r\t', '"\\b\\f\\n\\r\\t"'),
##############################################
python3.8-3.8.6/Lib/test/test_bz2.py-61-    TEXT = b''.join(TEXT_LINES)
python3.8-3.8.6/Lib/test/test_bz2.py:62:    DATA = b'BZh91AY&SY.\xc8N\x18\x00\x01>_\x80\x00\x10@\x02\xff\xf0\x01\x07n\x00?\xe7\xff\xe00\x01\x99\xaa\x00\xc0\x03F\x86\x8c#&\x83F\x9a\x03\x06\xa6\xd0\xa6\x93M\x0fQ\xa7\xa8\x06\x804hh\x12$\x11\xa4i4\xf14S\xd2<Q\xb5\x0fH\xd3\xd4\xdd\xd5\x87\xbb\xf8\x94\r\x8f\xafI\x12\xe1\xc9\xf8/E\x00pu\x89\x12]\xc9\xbbDL\nQ\x0e\t1\x12\xdf\xa0\xc0\x97\xac2O9\x89\x13\x94\x0e\x1c7\x0ed\x95I\x0c\xaaJ\xa4\x18L\x10\x05#\x9c\xaf\xba\xbc/\x97\x8a#C\xc8\xe1\x8cW\xf9\xe2\xd0\xd6M\xa7\x8bXa<e\x84t\xcbL\xb3\xa7\xd9\xcd\xd1\xcb\x84.\xaf\xb3\xab\xab\xad`n}\xa0lh\tE,\x8eZ\x15\x17VH>\x88\xe5\xcd9gd6\x0b\n\xe9\x9b\xd5\x8a\x99\xf7\x08.K\x8ev\xfb\xf7xw\xbb\xdf\xa1\x92\xf1\xdd|/";\xa2\xba\x9f\xd5\xb1#A\xb6\xf6\xb3o\xc9\xc5y\\\xebO\xe7\x85\x9a\xbc\xb6f8\x952\xd5\xd7"%\x89>V,\xf7\xa6z\xe2\x9f\xa3\xdf\x11\x11"\xd6E)I\xa9\x13^\xca\xf3r\xd0\x03U\x922\xf26\xec\xb6\xed\x8b\xc3U\x13\x9d\xc5\x170\xa4\xfa^\x92\xacDF\x8a\x97\xd6\x19\xfe\xdd\xb8\xbd\x1a\x9a\x19\xa3\x80ankR\x8b\xe5\xd83]\xa9\xc6\x08\x82f\xf6\xb9"6l$\xb8j@\xc0\x8a\xb0l1..\xbak\x83ls\x15\xbc\xf4\xc1\x13\xbe\xf8E\xb8\x9d\r\xa8\x9dk\x84\xd3n\xfa\xacQ\x07\xb1%y\xaav\xb4\x08\xe0z\x1b\x16\xf5\x04\xe9\xcc\xb9\x08z\x1en7.G\xfc]\xc9\x14\xe1B@\xbb!8`'
python3.8-3.8.6/Lib/test/test_bz2.py-63-    EMPTY_DATA = b'BZh9\x17rE8P\x90\x00\x00\x00\x00'
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1650-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1651:            parser.get_angle_addr('(foo) ')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1652-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1654-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1655:            parser.get_angle_addr('(foo) , next')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1656-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1658-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1659:            parser.get_angle_addr('bar')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1660-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1662-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1663:            parser.get_angle_addr('(foo) <, bar')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1664-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1835-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1836:            parser.get_name_addr(' (foo) ')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1837-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1839-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1840:            parser.get_name_addr(' (foo) ,')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1841-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1843-        with self.assertRaises(errors.HeaderParseError):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1844:            parser.get_name_addr('foo bar')
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1845-
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1875-
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1876:    def test_get_mailbox_name_addr(self):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1877-        mailbox = self._test_get_x(parser.get_mailbox,
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1916-
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1917:    def test_get_mailbox_list_single_addr(self):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1918-        mailbox_list = self._test_get_x(parser.get_mailbox_list,
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1934-
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1935:    def test_get_mailbox_list_two_simple_addr(self):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1936-        mailbox_list = self._test_get_x(parser.get_mailbox_list,
##############################################
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1950-
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py:1951:    def test_get_mailbox_list_two_name_addr(self):
python3.8-3.8.6/Lib/test/test_email/test__header_value_parser.py-1952-        mailbox_list = self._test_get_x(parser.get_mailbox_list,
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3040-    def test_parseaddr_empty(self):
python3.8-3.8.6/Lib/test/test_email/test_email.py:3041:        self.assertEqual(utils.parseaddr('<>'), ('', ''))
python3.8-3.8.6/Lib/test/test_email/test_email.py:3042:        self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '')
python3.8-3.8.6/Lib/test/test_email/test_email.py-3043-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3045-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3046:            utils.parseaddr('a@b@c'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3047-            ('', '')
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3049-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3050:            utils.parseaddr('a@b.c@c'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3051-            ('', '')
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3053-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3054:            utils.parseaddr('a@172.17.0.1@c'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3055-            ('', '')
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3059-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3060:            utils.formataddr(('A Silly Person', 'person@dom.ain')),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3061-            'A Silly Person <person@dom.ain>')
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3064-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3065:            utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3066-            r'"A (Very) Silly Person" <person@dom.ain>')
python3.8-3.8.6/Lib/test/test_email/test_email.py-3067-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3068:            utils.parseaddr(r'"A \(Very\) Silly Person" <person@dom.ain>'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3069-            ('A (Very) Silly Person', 'person@dom.ain'))
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3071-        b = 'person@dom.ain'
python3.8-3.8.6/Lib/test/test_email/test_email.py:3072:        self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3073-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3075-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3076:            utils.formataddr((r'Arthur \Backslash\ Foobar', 'person@dom.ain')),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3077-            r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>')
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3079-        b = 'person@dom.ain'
python3.8-3.8.6/Lib/test/test_email/test_email.py:3080:        self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3081-
python3.8-3.8.6/Lib/test/test_email/test_email.py-3082-    def test_quotes_unicode_names(self):
python3.8-3.8.6/Lib/test/test_email/test_email.py:3083:        # issue 1690608.  email.utils.formataddr() should be rfc2047 aware.
python3.8-3.8.6/Lib/test/test_email/test_email.py-3084-        name = "H\u00e4ns W\u00fcrst"
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3087-        latin1_quopri = "=?iso-8859-1?q?H=E4ns_W=FCrst?= <person@dom.ain>"
python3.8-3.8.6/Lib/test/test_email/test_email.py:3088:        self.assertEqual(utils.formataddr((name, addr)), utf8_base64)
python3.8-3.8.6/Lib/test/test_email/test_email.py:3089:        self.assertEqual(utils.formataddr((name, addr), 'iso-8859-1'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3090-            latin1_quopri)
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3092-    def test_accepts_any_charset_like_object(self):
python3.8-3.8.6/Lib/test/test_email/test_email.py:3093:        # issue 1690608.  email.utils.formataddr() should be rfc2047 aware.
python3.8-3.8.6/Lib/test/test_email/test_email.py-3094-        name = "H\u00e4ns W\u00fcrst"
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3102-        mock_expected = "%s <%s>" % (foobar, addr)
python3.8-3.8.6/Lib/test/test_email/test_email.py:3103:        self.assertEqual(utils.formataddr((name, addr), mock), mock_expected)
python3.8-3.8.6/Lib/test/test_email/test_email.py:3104:        self.assertEqual(utils.formataddr((name, addr), Charset('utf-8')),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3105-            utf8_base64)
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3107-    def test_invalid_charset_like_object_raises_error(self):
python3.8-3.8.6/Lib/test/test_email/test_email.py:3108:        # issue 1690608.  email.utils.formataddr() should be rfc2047 aware.
python3.8-3.8.6/Lib/test/test_email/test_email.py-3109-        name = "H\u00e4ns W\u00fcrst"
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3116-    def test_unicode_address_raises_error(self):
python3.8-3.8.6/Lib/test/test_email/test_email.py:3117:        # issue 1690608.  email.utils.formataddr() should be rfc2047 aware.
python3.8-3.8.6/Lib/test/test_email/test_email.py-3118-        addr = 'pers\u00f6n@dom.in'
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3125-        a, b = ('John X. Doe', 'jxd@example.com')
python3.8-3.8.6/Lib/test/test_email/test_email.py:3126:        self.assertEqual(utils.parseaddr(x), (a, b))
python3.8-3.8.6/Lib/test/test_email/test_email.py:3127:        self.assertEqual(utils.parseaddr(y), (a, b))
python3.8-3.8.6/Lib/test/test_email/test_email.py:3128:        # formataddr() quotes the name if there's a dot in it
python3.8-3.8.6/Lib/test/test_email/test_email.py:3129:        self.assertEqual(utils.formataddr((a, b)), y)
python3.8-3.8.6/Lib/test/test_email/test_email.py-3130-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3141-        eq = self.assertEqual
python3.8-3.8.6/Lib/test/test_email/test_email.py:3142:        eq(utils.parseaddr('""example" example"@example.com'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3143-          ('', '""example" example"@example.com'))
python3.8-3.8.6/Lib/test/test_email/test_email.py:3144:        eq(utils.parseaddr('"\\"example\\" example"@example.com'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3145-          ('', '"\\"example\\" example"@example.com'))
python3.8-3.8.6/Lib/test/test_email/test_email.py:3146:        eq(utils.parseaddr('"\\\\"example\\\\" example"@example.com'),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3147-          ('', '"\\\\"example\\\\" example"@example.com'))
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3156-        self.assertEqual(('', "merwok wok@xample.com"),
python3.8-3.8.6/Lib/test/test_email/test_email.py:3157:            utils.parseaddr("merwok wok@xample.com"))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3158-        self.assertEqual(('', "merwok  wok@xample.com"),
python3.8-3.8.6/Lib/test/test_email/test_email.py:3159:            utils.parseaddr("merwok  wok@xample.com"))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3160-        self.assertEqual(('', "merwok  wok@xample.com"),
python3.8-3.8.6/Lib/test/test_email/test_email.py:3161:            utils.parseaddr(" merwok  wok  @xample.com"))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3162-        self.assertEqual(('', 'merwok"wok"  wok@xample.com'),
python3.8-3.8.6/Lib/test/test_email/test_email.py:3163:            utils.parseaddr('merwok"wok"  wok@xample.com'))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3164-        self.assertEqual(('', 'merwok.wok.wok@xample.com'),
python3.8-3.8.6/Lib/test/test_email/test_email.py:3165:            utils.parseaddr('merwok. wok .  wok@xample.com'))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3166-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3171-                            '(foo@example.com)" <foo@example.com>')
python3.8-3.8.6/Lib/test/test_email/test_email.py:3172:        self.assertEqual(utils.parseaddr(addrstr), addr)
python3.8-3.8.6/Lib/test/test_email/test_email.py:3173:        self.assertEqual(utils.formataddr(addr), addrstr)
python3.8-3.8.6/Lib/test/test_email/test_email.py-3174-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3179-\tBar <foo@example.com>"""
python3.8-3.8.6/Lib/test/test_email/test_email.py:3180:        self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo@example.com'))
python3.8-3.8.6/Lib/test/test_email/test_email.py-3181-
##############################################
python3.8-3.8.6/Lib/test/test_email/test_email.py-3183-        self.assertEqual(
python3.8-3.8.6/Lib/test/test_email/test_email.py:3184:            utils.formataddr(('A Silly; Person', 'person@dom.ain')),
python3.8-3.8.6/Lib/test/test_email/test_email.py-3185-            r'"A Silly; Person" <person@dom.ain>')
##############################################
python3.8-3.8.6/Lib/test/test_importlib/test_abc.py-614-
python3.8-3.8.6/Lib/test/test_importlib/test_abc.py:615:##### ExecutionLoader concrete methods #########################################
python3.8-3.8.6/Lib/test/test_importlib/test_abc.py-616-class ExecutionLoaderGetCodeTests:
##############################################
python3.8-3.8.6/Lib/test/test_set.py-13-
python3.8-3.8.6/Lib/test/test_set.py:14:class PassThru(Exception):
python3.8-3.8.6/Lib/test/test_set.py-15-    pass
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_events.py-635-
python3.8-3.8.6/Lib/test/test_asyncio/test_events.py:636:    def test_create_connection_local_addr(self):
python3.8-3.8.6/Lib/test/test_asyncio/test_events.py-637-        with test_utils.run_test_server() as httpd:
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1230-    @patch_socket
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1231:    def test_create_connection_multiple_errors_local_addr(self, m_socket):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1232-
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1260-
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1261:    def _test_create_connection_ip_addr(self, m_socket, allow_inet_pton):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1262-        # Test the fallback code, even if this system has inet_pton.
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1329-    @patch_socket
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1330:    def test_create_connection_ip_addr(self, m_socket):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1331:        self._test_create_connection_ip_addr(m_socket, True)
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1332-
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1334-    def test_create_connection_no_inet_pton(self, m_socket):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1335:        self._test_create_connection_ip_addr(m_socket, False)
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1336-
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1367-
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1368:    def test_create_connection_no_local_addr(self):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1369-        async def getaddrinfo(host, *args, **kw):
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1828-    @patch_socket
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py:1829:    def test_create_datagram_endpoint_ip_addr(self, m_socket):
python3.8-3.8.6/Lib/test/test_asyncio/test_base_events.py-1830-        def getaddrinfo(*args, **kw):
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_proactor_events.py-613-
python3.8-3.8.6/Lib/test/test_asyncio/test_proactor_events.py:614:    def test_sendto_connected_addr(self):
python3.8-3.8.6/Lib/test/test_asyncio/test_proactor_events.py-615-        transport = self.datagram_transport(address=('0.0.0.0', 1))
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/functional.py-271-    @property
python3.8-3.8.6/Lib/test/test_asyncio/functional.py:272:    def addr(self):
python3.8-3.8.6/Lib/test/test_asyncio/functional.py-273-        return self._sock.getsockname()
##############################################
python3.8-3.8.6/Lib/test/test_asyncio/test_selector_events.py-1257-
python3.8-3.8.6/Lib/test/test_asyncio/test_selector_events.py:1258:    def test_sendto_connected_addr(self):
python3.8-3.8.6/Lib/test/test_asyncio/test_selector_events.py-1259-        transport = self.datagram_transport(address=('0.0.0.0', 1))
##############################################
python3.8-3.8.6/Lib/test/test_smtplib.py-833-        if arg in sim_users:
python3.8-3.8.6/Lib/test/test_smtplib.py:834:            self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg)))
python3.8-3.8.6/Lib/test/test_smtplib.py-835-        else:
##############################################
python3.8-3.8.6/Lib/test/test_smtplib.py-842-            for n, user_email in enumerate(user_list):
python3.8-3.8.6/Lib/test/test_smtplib.py:843:                quoted_addr = smtplib.quoteaddr(user_email)
python3.8-3.8.6/Lib/test/test_smtplib.py-844-                if n < len(user_list) - 1:
##############################################
python3.8-3.8.6/Lib/test/test_smtplib.py-975-            expected_known = (250, bytes('%s %s' %
python3.8-3.8.6/Lib/test/test_smtplib.py:976:                                         (name, smtplib.quoteaddr(addr_spec)),
python3.8-3.8.6/Lib/test/test_smtplib.py-977-                                         "ascii"))
##############################################
python3.8-3.8.6/Lib/test/test_smtplib.py-990-            for m in members:
python3.8-3.8.6/Lib/test/test_smtplib.py:991:                users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m)))
python3.8-3.8.6/Lib/test/test_smtplib.py-992-            expected_known = (250, bytes('\n'.join(users), "ascii"))
##############################################
python3.8-3.8.6/Lib/test/test_smtplib.py-1172-        message = EmailMessage()
python3.8-3.8.6/Lib/test/test_smtplib.py:1173:        message['From'] = email.utils.formataddr(('Michaël', 'michael@example.com'))
python3.8-3.8.6/Lib/test/test_smtplib.py:1174:        message['To'] = email.utils.formataddr(('René', 'rene@example.com'))
python3.8-3.8.6/Lib/test/test_smtplib.py-1175-
##############################################
python3.8-3.8.6/Lib/test/test_os.py-857-        os.environ.update(HELLO="World")
python3.8-3.8.6/Lib/test/test_os.py:858:        with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen:
python3.8-3.8.6/Lib/test/test_os.py-859-            value = popen.read().strip()
##############################################
python3.8-3.8.6/Lib/test/test_binascii.py-175-        self.assertEqual(binascii.b2a_uu(b'\x00Cat', backtick=True),
python3.8-3.8.6/Lib/test/test_binascii.py:176:                         b'$`$-A=```\n')
python3.8-3.8.6/Lib/test/test_binascii.py:177:        self.assertEqual(binascii.a2b_uu(b'$`$-A=```\n'),
python3.8-3.8.6/Lib/test/test_binascii.py-178-                         binascii.a2b_uu(b'$ $-A=   \n'))
##############################################
python3.8-3.8.6/Lib/test/test_descr.py-4133-        # A badly placed Py_DECREF in type_set_name led to arbitrary code
python3.8-3.8.6/Lib/test/test_descr.py:4134:        # execution while the type structure was not in a sane state, and a
python3.8-3.8.6/Lib/test/test_descr.py-4135-        # possible segmentation fault as a result.  See bug #16447.
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-908-        try:
python3.8-3.8.6/Lib/test/test_socket.py:909:            hname, aliases, ipaddrs = socket.gethostbyaddr(ip)
python3.8-3.8.6/Lib/test/test_socket.py-910-        except OSError:
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-924-        for host in [support.HOSTv4]:
python3.8-3.8.6/Lib/test/test_socket.py:925:            self.assertIn(host, socket.gethostbyaddr(host)[2])
python3.8-3.8.6/Lib/test/test_socket.py-926-
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-939-            with self.assertRaises(OSError, msg=explanation):
python3.8-3.8.6/Lib/test/test_socket.py:940:                socket.gethostbyaddr(addr)
python3.8-3.8.6/Lib/test/test_socket.py-941-
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-1494-        # have a reverse entry yet
python3.8-3.8.6/Lib/test/test_socket.py:1495:        # socket.gethostbyaddr('испытание.python.org')
python3.8-3.8.6/Lib/test/test_socket.py-1496-
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-2724-
python3.8-3.8.6/Lib/test/test_socket.py:2725:    def testSendmsgExplicitNoneAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-2726-        # Check that peer address can be specified as None.
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-2728-
python3.8-3.8.6/Lib/test/test_socket.py:2729:    def _testSendmsgExplicitNoneAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-2730-        self.assertEqual(self.sendmsgToServer([MSG], [], 0, None), len(MSG))
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-2786-
python3.8-3.8.6/Lib/test/test_socket.py:2787:    def testSendmsgNoDestAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-2788-        # Check that sendmsg() fails when no destination address is
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-2791-
python3.8-3.8.6/Lib/test/test_socket.py:2792:    def _testSendmsgNoDestAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-2793-        self.assertRaises(OSError, self.cli_sock.sendmsg,
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-5123-
python3.8-3.8.6/Lib/test/test_socket.py:5124:    def testStrAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-5125-        # Test binding to and retrieving a normal string pathname.
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-5130-
python3.8-3.8.6/Lib/test/test_socket.py:5131:    def testBytesAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-5132-        # Test binding to a bytes pathname.
##############################################
python3.8-3.8.6/Lib/test/test_socket.py-5146-
python3.8-3.8.6/Lib/test/test_socket.py:5147:    def testUnencodableAddr(self):
python3.8-3.8.6/Lib/test/test_socket.py-5148-        # Test binding to a pathname that cannot be encoded in the
##############################################
python3.8-3.8.6/Lib/asyncore.py-290-
python3.8-3.8.6/Lib/asyncore.py:291:    def set_reuse_addr(self):
python3.8-3.8.6/Lib/asyncore.py-292-        # try to re-use a server port if possible
##############################################
python3.8-3.8.6/Lib/socket.py-17-gethostbyname() -- map a hostname to its IP number
python3.8-3.8.6/Lib/socket.py:18:gethostbyaddr() -- map an IP number or hostname to DNS info
python3.8-3.8.6/Lib/socket.py-19-getservbyname() -- map a service name and a protocol name to a port number
##############################################
python3.8-3.8.6/Lib/socket.py-747-
python3.8-3.8.6/Lib/socket.py:748:    First the hostname returned by gethostbyaddr() is checked, then
python3.8-3.8.6/Lib/socket.py-749-    possibly existing aliases. In case no FQDN is available, hostname
##############################################
python3.8-3.8.6/Lib/socket.py-755-    try:
python3.8-3.8.6/Lib/socket.py:756:        hostname, aliases, ipaddrs = gethostbyaddr(name)
python3.8-3.8.6/Lib/socket.py-757-    except error:
##############################################
python3.8-3.8.6/Lib/sysconfig.py-237-            v = v.strip()
python3.8-3.8.6/Lib/sysconfig.py:238:            # `$$' is a literal `$' in make
python3.8-3.8.6/Lib/sysconfig.py-239-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/m4/ax_check_openssl.m4-55-            if test x"$PKG_CONFIG" != x""; then
python3.8-3.8.6/m4/ax_check_openssl.m4:56:                OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null`
python3.8-3.8.6/m4/ax_check_openssl.m4-57-                if test $? = 0; then
python3.8-3.8.6/m4/ax_check_openssl.m4:58:                    OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null`
python3.8-3.8.6/m4/ax_check_openssl.m4:59:                    OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null`
python3.8-3.8.6/m4/ax_check_openssl.m4-60-                    found=true
##############################################
python3.8-3.8.6/Objects/memoryobject.c-211-
python3.8-3.8.6/Objects/memoryobject.c:212:#define VIEW_ADDR(mv) (&((PyMemoryViewObject *)mv)->view)
python3.8-3.8.6/Objects/memoryobject.c-213-
##############################################
python3.8-3.8.6/Objects/memoryobject.c-2141-    static char *kwlist[] = {"order", NULL};
python3.8-3.8.6/Objects/memoryobject.c:2142:    Py_buffer *src = VIEW_ADDR(self);
python3.8-3.8.6/Objects/memoryobject.c-2143-    char *order = NULL;
##############################################
python3.8-3.8.6/Objects/memoryobject.c-2206-{
python3.8-3.8.6/Objects/memoryobject.c:2207:    Py_buffer *src = VIEW_ADDR(self);
python3.8-3.8.6/Objects/memoryobject.c-2208-    PyObject *bytes;
##############################################
python3.8-3.8.6/Objects/memoryobject.c-2819-    }
python3.8-3.8.6/Objects/memoryobject.c:2820:    vv = VIEW_ADDR(v);
python3.8-3.8.6/Objects/memoryobject.c-2821-
##############################################
python3.8-3.8.6/Objects/memoryobject.c-2826-        }
python3.8-3.8.6/Objects/memoryobject.c:2827:        ww = VIEW_ADDR(w);
python3.8-3.8.6/Objects/memoryobject.c-2828-    }
##############################################
python3.8-3.8.6/Objects/obmalloc.c-878- * have to be.  In theory, if SYSTEM_PAGE_SIZE is larger than the native page
python3.8-3.8.6/Objects/obmalloc.c:879: * size, then `POOL_ADDR(p)->arenaindex' could rarely cause a segmentation
python3.8-3.8.6/Objects/obmalloc.c-880- * violation fault.  4K is apparently OK for all the platforms that python
##############################################
python3.8-3.8.6/Objects/obmalloc.c-995-/* Round pointer P down to the closest pool-aligned address <= P, as a poolp */
python3.8-3.8.6/Objects/obmalloc.c:996:#define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE))
python3.8-3.8.6/Objects/obmalloc.c-997-
##############################################
python3.8-3.8.6/Objects/obmalloc.c-1319-Return true if and only if P is an address that was allocated by pymalloc.
python3.8-3.8.6/Objects/obmalloc.c:1320:POOL must be the pool address associated with P, i.e., POOL = POOL_ADDR(P)
python3.8-3.8.6/Objects/obmalloc.c-1321-(the caller is asked to compute this because the macro expands POOL more than
python3.8-3.8.6/Objects/obmalloc.c:1322:once, and for efficiency it's best for the caller to assign POOL_ADDR(P) to a
python3.8-3.8.6/Objects/obmalloc.c-1323-variable and pass the latter to the macro; because address_in_range is
##############################################
python3.8-3.8.6/Objects/obmalloc.c-1675-
python3.8-3.8.6/Objects/obmalloc.c:1676:    pool = POOL_ADDR(p);
python3.8-3.8.6/Objects/obmalloc.c-1677-    if (!address_in_range(p, pool)) {
##############################################
python3.8-3.8.6/Objects/obmalloc.c-1927-
python3.8-3.8.6/Objects/obmalloc.c:1928:    pool = POOL_ADDR(p);
python3.8-3.8.6/Objects/obmalloc.c-1929-    if (!address_in_range(p, pool)) {
##############################################
python3.8-3.8.6/debian/dh_doclink-2-
python3.8-3.8.6/debian/dh_doclink:3:pkg=`echo $1 | sed 's/^-p//'`
python3.8-3.8.6/debian/dh_doclink-4-target=$2
##############################################
python3.8-3.8.6/debian/dh_doclink-8-f=debian/$pkg.postinst.debhelper
python3.8-3.8.6/debian/dh_doclink:9:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then
python3.8-3.8.6/debian/dh_doclink-10-cat >> $f <<EOF
##############################################
python3.8-3.8.6/debian/dh_doclink-20-f=debian/$pkg.prerm.debhelper
python3.8-3.8.6/debian/dh_doclink:21:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then
python3.8-3.8.6/debian/dh_doclink-22-cat >> $f <<EOF
##############################################
python3.8-3.8.6/debian/locale-gen-13-	[ -n "$locale" -a -n "$charset" ] || continue
python3.8-3.8.6/debian/locale-gen:14:	echo -n "  `echo $locale | sed 's/\([^.\@]*\).*/\1/'`"
python3.8-3.8.6/debian/locale-gen-15-	echo -n ".$charset"
python3.8-3.8.6/debian/locale-gen:16:	echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`
python3.8-3.8.6/debian/locale-gen-17-	echo -n '...'
##############################################
python3.8-3.8.6/debian/locale-gen-20-	else
python3.8-3.8.6/debian/locale-gen:21:            input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`
python3.8-3.8.6/debian/locale-gen-22-	fi
##############################################
python3.8-3.8.6/debian/patches/link-opt.diff-13- 	FreeBSD*)
python3.8-3.8.6/debian/patches/link-opt.diff:14: 		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/debian/patches/link-opt.diff-15- 		then
##############################################
python3.8-3.8.6/debian/patches/reproducible-buildinfo.diff-5-@@ -756,6 +756,8 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \
python3.8-3.8.6/debian/patches/reproducible-buildinfo.diff:6: 	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/debian/patches/reproducible-buildinfo.diff:7: 	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/debian/patches/reproducible-buildinfo.diff:8: 	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/debian/patches/reproducible-buildinfo.diff-9-+	      $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \
##############################################
python3.8-3.8.6/debian/rules-768-	for f in debian/*.in; do \
python3.8-3.8.6/debian/rules:769:	  f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \
python3.8-3.8.6/debian/rules-770-	  if [ $$f2 != debian/control ] && [ $$f2 != debian/source.lintian-overrides ]; then \
##############################################
python3.8-3.8.6/debian/rules-780-	for f in debian/*.in; do \
python3.8-3.8.6/debian/rules:781:	  f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \
python3.8-3.8.6/debian/rules-782-	  if [ $$f2 != debian/control ]; then \
##############################################
python3.8-3.8.6/debian/rules-1456-	dh_shlibdeps -a
python3.8-3.8.6/debian/rules:1457:	dep=`sed -n '/^shlibs:Depends/s/[^=]*=\(.*\)/\1/p' $(d_min).substvars | awk -v RS=', ' -v ORS=', ' '/^libc6/ { print }'`; \
python3.8-3.8.6/debian/rules-1458-	echo "shlibs:Pre-Depends=$$dep" >> $(d_min).substvars
##############################################
python3.8-3.8.6/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-321-            v = v.strip()
python3.8-3.8.6/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py:322:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-323-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-328-            v = v.strip()
python3.8-3.8.6/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py:329:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-330-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-92-if test "$prefix" != "/"; then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:93:    prefix=`echo "$prefix" | sed -e 's/\/$//g'`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-94-fi
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-204-	then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:205:		if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-206-		then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-232-    PYTHONFRAMEWORKDIR=${withval}.framework
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:233:    PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-234-    ],[
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-295-		*/Library/Frameworks)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:296:			MDIR="`dirname "${enableval}"`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:297:			MDIR="`dirname "${MDIR}"`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-298-			FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-618-		then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:619:			if test -n "`"$found_gcc" --version | grep llvm-gcc`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-620-			then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-859-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:860:  PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' 	'`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-861-  AC_MSG_RESULT([$PLATFORM_TRIPLET])
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1046-if test "$GCC" = yes; then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1047:       ac_prog=`$CC -print-prog-name=ld`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1048-fi
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1049:case `"$ac_prog" -V 2>&1 < /dev/null` in
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1050-      *GNU*)
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1322-  then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1323:    clang_dir=`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1324:    clang_bin=`readlink "${clang_bin}"`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1325:    llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1326-    llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1747-        test "$Py_DEBUG" != "true" && \
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:1748:        test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-1749-    then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2603-	FreeBSD*)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:2604:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2605-		then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2611-	OpenBSD*)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:2612:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2613-		then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2715-	FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:2716:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2717-		then
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2991-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:2992:    LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-2993-else
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-3067-else
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:3068:  for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-3069-    if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-4656-AC_MSG_CHECKING(SOABI)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:4657:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-4658-AC_MSG_RESULT($SOABI)
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-4663-  AC_SUBST(ALT_SOABI)
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:4664:  ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-4665-  AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-5322-
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:5323:for h in `(cd $srcdir;echo Python/thread_*.h)`
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-5324-do
##############################################
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-5394-              int r;
python3.8-3.8.6/.pc/link-opt.diff/configure.ac:5395:              asm ( "movl \$6, (%1)\n\t"
python3.8-3.8.6/.pc/link-opt.diff/configure.ac-5396-                    "xorl %0, %0\n\t"
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-601-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:602:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-603-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-745-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:746:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:747:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:748:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-749-	      -o $@ $(srcdir)/Modules/getbuildinfo.c
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1203-		  if test $$i != X; then \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:1204:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:1205:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1206-		  fi; \
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1429-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:1430:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1431-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1583-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:1584:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1585-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1641-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in:1642:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/.pc/profiled-build.diff/Makefile.pre.in-1643-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-92-if test "$prefix" != "/"; then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:93:    prefix=`echo "$prefix" | sed -e 's/\/$//g'`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-94-fi
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-204-	then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:205:		if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-206-		then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-232-    PYTHONFRAMEWORKDIR=${withval}.framework
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:233:    PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-234-    ],[
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-295-		*/Library/Frameworks)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:296:			MDIR="`dirname "${enableval}"`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:297:			MDIR="`dirname "${MDIR}"`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-298-			FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-618-		then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:619:			if test -n "`"$found_gcc" --version | grep llvm-gcc`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-620-			then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-859-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:860:  PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' 	'`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-861-  AC_MSG_RESULT([$PLATFORM_TRIPLET])
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1046-if test "$GCC" = yes; then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1047:       ac_prog=`$CC -print-prog-name=ld`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1048-fi
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1049:case `"$ac_prog" -V 2>&1 < /dev/null` in
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1050-      *GNU*)
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1322-  then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1323:    clang_dir=`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1324:    clang_bin=`readlink "${clang_bin}"`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1325:    llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1326-    llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1747-        test "$Py_DEBUG" != "true" && \
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:1748:        test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-1749-    then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2603-	FreeBSD*)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:2604:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2605-		then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2611-	OpenBSD*)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:2612:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2613-		then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2715-	FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:2716:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2717-		then
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2991-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:2992:    LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-2993-else
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-3067-else
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:3068:  for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-3069-    if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-4656-AC_MSG_CHECKING(SOABI)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:4657:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-4658-AC_MSG_RESULT($SOABI)
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-4663-  AC_SUBST(ALT_SOABI)
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:4664:  ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-4665-  AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-5322-
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:5323:for h in `(cd $srcdir;echo Python/thread_*.h)`
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-5324-do
##############################################
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-5394-              int r;
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac:5395:              asm ( "movl \$6, (%1)\n\t"
python3.8-3.8.6/.pc/disable-sem-check.diff/configure.ac-5396-                    "xorl %0, %0\n\t"
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Lib/sysconfig.py-237-            v = v.strip()
python3.8-3.8.6/.pc/multiarch.diff/Lib/sysconfig.py:238:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/multiarch.diff/Lib/sysconfig.py-239-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Lib/distutils/sysconfig.py-339-            v = v.strip()
python3.8-3.8.6/.pc/multiarch.diff/Lib/distutils/sysconfig.py:340:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/multiarch.diff/Lib/distutils/sysconfig.py-341-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-611-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:612:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-613-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-755-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:756:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:757:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:758:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-759-	      -o $@ $(srcdir)/Modules/getbuildinfo.c
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1213-		  if test $$i != X; then \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:1214:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:1215:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1216-		  fi; \
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1439-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:1440:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1441-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1593-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:1594:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1595-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1651-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in:1652:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/.pc/multiarch.diff/Makefile.pre.in-1653-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-342-            v = v.strip()
python3.8-3.8.6/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py:343:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-344-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-611-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:612:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-613-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-755-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:756:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:757:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:758:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-759-	      -o $@ $(srcdir)/Modules/getbuildinfo.c
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1214-		  if test $$i != X; then \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1215:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1216:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1217-		  fi; \
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1440-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1441:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1442-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1594-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1595:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1596-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1652-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1653:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1654-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-611-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:612:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-613-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-755-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:756:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:757:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:758:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-759-	      $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1216-		  if test $$i != X; then \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:1217:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:1218:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1219-		  fi; \
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1442-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:1443:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1444-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1596-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:1597:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1598-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1654-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in:1655:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/.pc/build-math-object.diff/Makefile.pre.in-1656-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-237-            v = v.strip()
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/sysconfig.py:238:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-239-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-347-            v = v.strip()
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py:348:            # `$$' is a literal `$' in make
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-349-            tmpv = v.replace('$$', '')
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-613-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:614:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-615-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-757-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:758:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:759:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:760:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-761-	      $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1218-		  if test $$i != X; then \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:1219:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:1220:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1221-		  fi; \
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1444-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:1445:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1446-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1598-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:1599:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1600-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1656-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in:1657:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/.pc/sysconfigdata-name.diff/Makefile.pre.in-1658-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-92-if test "$prefix" != "/"; then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:93:    prefix=`echo "$prefix" | sed -e 's/\/$//g'`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-94-fi
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-204-	then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:205:		if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-206-		then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-232-    PYTHONFRAMEWORKDIR=${withval}.framework
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:233:    PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-234-    ],[
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-295-		*/Library/Frameworks)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:296:			MDIR="`dirname "${enableval}"`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:297:			MDIR="`dirname "${MDIR}"`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-298-			FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-618-		then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:619:			if test -n "`"$found_gcc" --version | grep llvm-gcc`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-620-			then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-859-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:860:  PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' 	'`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-861-  AC_MSG_RESULT([$PLATFORM_TRIPLET])
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1046-if test "$GCC" = yes; then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1047:       ac_prog=`$CC -print-prog-name=ld`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1048-fi
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1049:case `"$ac_prog" -V 2>&1 < /dev/null` in
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1050-      *GNU*)
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1322-  then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1323:    clang_dir=`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1324:    clang_bin=`readlink "${clang_bin}"`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1325:    llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1326-    llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1747-        test "$Py_DEBUG" != "true" && \
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:1748:        test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-1749-    then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2603-	FreeBSD*)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:2604:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2605-		then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2611-	OpenBSD*)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:2612:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2613-		then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2715-	FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:2716:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2717-		then
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2991-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:2992:    LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-2993-else
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-3067-else
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:3068:  for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-3069-    if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-4666-AC_MSG_CHECKING(SOABI)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:4667:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-4668-AC_MSG_RESULT($SOABI)
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-4673-  AC_SUBST(ALT_SOABI)
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:4674:  ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-4675-  AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-5332-
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:5333:for h in `(cd $srcdir;echo Python/thread_*.h)`
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-5334-do
##############################################
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-5404-              int r;
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac:5405:              asm ( "movl \$6, (%1)\n\t"
python3.8-3.8.6/.pc/sysconfigdata-name.diff/configure.ac-5406-                    "xorl %0, %0\n\t"
##############################################
python3.8-3.8.6/Makefile.pre.in-613-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o
python3.8-3.8.6/Makefile.pre.in:614:	@case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \
python3.8-3.8.6/Makefile.pre.in-615-	    *\ -s*|s*) quiet="-q";; \
##############################################
python3.8-3.8.6/Makefile.pre.in-757-	$(CC) -c $(PY_CORE_CFLAGS) \
python3.8-3.8.6/Makefile.pre.in:758:	      -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \
python3.8-3.8.6/Makefile.pre.in:759:	      -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \
python3.8-3.8.6/Makefile.pre.in:760:	      -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \
python3.8-3.8.6/Makefile.pre.in-761-	      $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \
##############################################
python3.8-3.8.6/Makefile.pre.in-1218-		  if test $$i != X; then \
python3.8-3.8.6/Makefile.pre.in:1219:		    echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/Makefile.pre.in:1220:		    $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \
python3.8-3.8.6/Makefile.pre.in-1221-		  fi; \
##############################################
python3.8-3.8.6/Makefile.pre.in-1444-		if test ! -d $$a; then continue; else true; fi; \
python3.8-3.8.6/Makefile.pre.in:1445:		if test `ls $$a | wc -l` -lt 1; then continue; fi; \
python3.8-3.8.6/Makefile.pre.in-1446-		b=$(LIBDEST)/$$d; \
##############################################
python3.8-3.8.6/Makefile.pre.in-1600-	@if [ -s Modules/python.exp -a \
python3.8-3.8.6/Makefile.pre.in:1601:		"`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \
python3.8-3.8.6/Makefile.pre.in-1602-		echo; echo "Installing support files for building shared extension modules on AIX:"; \
##############################################
python3.8-3.8.6/Makefile.pre.in-1659-	$(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers
python3.8-3.8.6/Makefile.pre.in:1660:	sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist
python3.8-3.8.6/Makefile.pre.in-1661-	$(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current
##############################################
python3.8-3.8.6/configure.ac-92-if test "$prefix" != "/"; then
python3.8-3.8.6/configure.ac:93:    prefix=`echo "$prefix" | sed -e 's/\/$//g'`
python3.8-3.8.6/configure.ac-94-fi
##############################################
python3.8-3.8.6/configure.ac-204-	then
python3.8-3.8.6/configure.ac:205:		if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`"
python3.8-3.8.6/configure.ac-206-		then
##############################################
python3.8-3.8.6/configure.ac-232-    PYTHONFRAMEWORKDIR=${withval}.framework
python3.8-3.8.6/configure.ac:233:    PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'`
python3.8-3.8.6/configure.ac-234-    ],[
##############################################
python3.8-3.8.6/configure.ac-295-		*/Library/Frameworks)
python3.8-3.8.6/configure.ac:296:			MDIR="`dirname "${enableval}"`"
python3.8-3.8.6/configure.ac:297:			MDIR="`dirname "${MDIR}"`"
python3.8-3.8.6/configure.ac-298-			FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications"
##############################################
python3.8-3.8.6/configure.ac-618-		then
python3.8-3.8.6/configure.ac:619:			if test -n "`"$found_gcc" --version | grep llvm-gcc`"
python3.8-3.8.6/configure.ac-620-			then
##############################################
python3.8-3.8.6/configure.ac-859-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then
python3.8-3.8.6/configure.ac:860:  PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' 	'`
python3.8-3.8.6/configure.ac-861-  AC_MSG_RESULT([$PLATFORM_TRIPLET])
##############################################
python3.8-3.8.6/configure.ac-1046-if test "$GCC" = yes; then
python3.8-3.8.6/configure.ac:1047:       ac_prog=`$CC -print-prog-name=ld`
python3.8-3.8.6/configure.ac-1048-fi
python3.8-3.8.6/configure.ac:1049:case `"$ac_prog" -V 2>&1 < /dev/null` in
python3.8-3.8.6/configure.ac-1050-      *GNU*)
##############################################
python3.8-3.8.6/configure.ac-1322-  then
python3.8-3.8.6/configure.ac:1323:    clang_dir=`dirname "${clang_bin}"`
python3.8-3.8.6/configure.ac:1324:    clang_bin=`readlink "${clang_bin}"`
python3.8-3.8.6/configure.ac:1325:    llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"`
python3.8-3.8.6/configure.ac-1326-    llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}"
##############################################
python3.8-3.8.6/configure.ac-1747-        test "$Py_DEBUG" != "true" && \
python3.8-3.8.6/configure.ac:1748:        test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`"
python3.8-3.8.6/configure.ac-1749-    then
##############################################
python3.8-3.8.6/configure.ac-2603-	FreeBSD*)
python3.8-3.8.6/configure.ac:2604:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/configure.ac-2605-		then
##############################################
python3.8-3.8.6/configure.ac-2611-	OpenBSD*)
python3.8-3.8.6/configure.ac:2612:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/configure.ac-2613-		then
##############################################
python3.8-3.8.6/configure.ac-2715-	FreeBSD*|NetBSD*|OpenBSD*|DragonFly*)
python3.8-3.8.6/configure.ac:2716:		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
python3.8-3.8.6/configure.ac-2717-		then
##############################################
python3.8-3.8.6/configure.ac-2991-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then
python3.8-3.8.6/configure.ac:2992:    LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`"
python3.8-3.8.6/configure.ac-2993-else
##############################################
python3.8-3.8.6/configure.ac-3067-else
python3.8-3.8.6/configure.ac:3068:  for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do
python3.8-3.8.6/configure.ac-3069-    if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb
##############################################
python3.8-3.8.6/configure.ac-4666-AC_MSG_CHECKING(SOABI)
python3.8-3.8.6/configure.ac:4667:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/configure.ac-4668-AC_MSG_RESULT($SOABI)
##############################################
python3.8-3.8.6/configure.ac-4673-  AC_SUBST(ALT_SOABI)
python3.8-3.8.6/configure.ac:4674:  ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET}
python3.8-3.8.6/configure.ac-4675-  AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}",
##############################################
python3.8-3.8.6/configure.ac-5332-
python3.8-3.8.6/configure.ac:5333:for h in `(cd $srcdir;echo Python/thread_*.h)`
python3.8-3.8.6/configure.ac-5334-do
##############################################
python3.8-3.8.6/configure.ac-5404-              int r;
python3.8-3.8.6/configure.ac:5405:              asm ( "movl \$6, (%1)\n\t"
python3.8-3.8.6/configure.ac-5406-                    "xorl %0, %0\n\t"