=========================================================== .___ __ __ _________________ __ __ __| _/|__|/ |_ / ___\_` __ \__ \ | | \/ __ | | \\_ __\ / /_/ > | \// __ \| | / /_/ | | || | \___ /|__| (____ /____/\____ | |__||__| /_____/ \/ \/ grep rough audit - static analysis tool v2.8 written by @Wireghoul =================================[justanotherhacker.com]=== python3.9-3.9.0/README.rst-210-version and can thus live side-by-side. ``make install`` also creates python3.9-3.9.0/README.rst:211:``${prefix}/bin/python3`` which refers to ``${prefix}/bin/pythonX.Y``. If you python3.9-3.9.0/README.rst-212-intend to install multiple versions using the same prefix you must decide which ############################################## python3.9-3.9.0/Doc/howto/logging-cookbook.rst-1057-additional, optional keyword parameter named ``style``. This defaults to python3.9-3.9.0/Doc/howto/logging-cookbook.rst:1058:``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond python3.9-3.9.0/Doc/howto/logging-cookbook.rst-1059-to the other two formatting styles. Backwards compatibility is maintained by ############################################## python3.9-3.9.0/Doc/howto/regex.rst-91- python3.9-3.9.0/Doc/howto/regex.rst:92:Metacharacters are not active inside classes. For example, ``[akm$]`` will python3.9-3.9.0/Doc/howto/regex.rst:93:match any of the characters ``'a'``, ``'k'``, ``'m'``, or ``'$'``; ``'$'`` is python3.9-3.9.0/Doc/howto/regex.rst-94-usually a metacharacter, but inside a character class it's stripped of its ############################################## python3.9-3.9.0/Doc/howto/regex.rst-730- python3.9-3.9.0/Doc/howto/regex.rst:731: To match a literal ``'$'``, use ``\$`` or enclose it inside a character class, python3.9-3.9.0/Doc/howto/regex.rst:732: as in ``[$]``. python3.9-3.9.0/Doc/howto/regex.rst-733- ############################################## python3.9-3.9.0/Doc/howto/regex.rst-1041- python3.9-3.9.0/Doc/howto/regex.rst:1042:``.*[.](?!bat$)[^.]*$`` The negative lookahead means: if the expression ``bat`` python3.9-3.9.0/Doc/howto/regex.rst-1043-doesn't match at this point, try the rest of the pattern; if ``bat$`` does ############################################## python3.9-3.9.0/Doc/howto/regex.rst-1052- python3.9-3.9.0/Doc/howto/regex.rst:1053:``.*[.](?!bat$|exe$)[^.]*$`` python3.9-3.9.0/Doc/howto/regex.rst-1054- ############################################## python3.9-3.9.0/Doc/howto/instrumentation.rst-281- tracing script as positional arguments, which must be accessed using python3.9-3.9.0/Doc/howto/instrumentation.rst:282: ``$arg1``, ``$arg2``, ``$arg3``: python3.9-3.9.0/Doc/howto/instrumentation.rst-283- python3.9-3.9.0/Doc/howto/instrumentation.rst:284: * ``$arg1`` : ``(const char *)`` filename, accessible using ``user_string($arg1)`` python3.9-3.9.0/Doc/howto/instrumentation.rst-285- python3.9-3.9.0/Doc/howto/instrumentation.rst:286: * ``$arg2`` : ``(const char *)`` function name, accessible using python3.9-3.9.0/Doc/howto/instrumentation.rst:287: ``user_string($arg2)`` python3.9-3.9.0/Doc/howto/instrumentation.rst-288- python3.9-3.9.0/Doc/howto/instrumentation.rst:289: * ``$arg3`` : ``int`` line number python3.9-3.9.0/Doc/howto/instrumentation.rst-290- ############################################## python3.9-3.9.0/Doc/install/index.rst-574- python3.9-3.9.0/Doc/install/index.rst:575:``$PLAT`` is not (necessarily) an environment variable---it will be expanded by python3.9-3.9.0/Doc/install/index.rst-576-the Distutils as it parses your command line options, just as it does when ############################################## python3.9-3.9.0/Doc/install/index.rst-611- python3.9-3.9.0/Doc/install/index.rst:612:You probably noticed the use of ``$HOME`` and ``$PLAT`` in the sample python3.9-3.9.0/Doc/install/index.rst-613-configuration file input. These are Distutils configuration variables, which ############################################## python3.9-3.9.0/Doc/install/index.rst-616-the Distutils additionally define a few extra variables that may not be in your python3.9-3.9.0/Doc/install/index.rst:617:environment, such as ``$PLAT``. (And of course, on systems that don't have python3.9-3.9.0/Doc/install/index.rst-618-environment variables, such as Mac OS 9, the configuration variables supplied by ############################################## python3.9-3.9.0/Doc/install/index.rst-738-+--------------+----------------------------------------------------------+-------+ python3.9-3.9.0/Doc/install/index.rst:739:| personal | :file:`$HOME/.pydistutils.cfg` | \(2) | python3.9-3.9.0/Doc/install/index.rst-740-+--------------+----------------------------------------------------------+-------+ ############################################## python3.9-3.9.0/Doc/whatsnew/3.7.rst-1242-:func:`re.split` now supports splitting on a pattern like ``r'\b'``, python3.9-3.9.0/Doc/whatsnew/3.7.rst:1243:``'^$'`` or ``(?=-)`` that matches an empty string. python3.9-3.9.0/Doc/whatsnew/3.7.rst-1244-(Contributed by Serhiy Storchaka in :issue:`25054`.) ############################################## python3.9-3.9.0/Doc/whatsnew/3.7.rst-2348- searching for all matches may also be changed in other cases. For example python3.9-3.9.0/Doc/whatsnew/3.7.rst:2349: in the string ``'a\n\n'``, the pattern ``r'(?m)^\s*?$'`` will not only python3.9-3.9.0/Doc/whatsnew/3.7.rst-2350- match empty strings at positions 2 and 3, but also the string ``'\n'`` at python3.9-3.9.0/Doc/whatsnew/3.7.rst-2351- positions 2--3. To match only blank lines, the pattern should be rewritten python3.9-3.9.0/Doc/whatsnew/3.7.rst:2352: as ``r'(?m)^[^\S\n]*$'``. python3.9-3.9.0/Doc/whatsnew/3.7.rst-2353- ############################################## python3.9-3.9.0/Doc/tutorial/inputoutput.rst-92-yet another way to substitute values into strings, using placeholders like python3.9-3.9.0/Doc/tutorial/inputoutput.rst:93:``$x`` and replacing them with values from a dictionary, but offers much less python3.9-3.9.0/Doc/tutorial/inputoutput.rst-94-control of the formatting. ############################################## python3.9-3.9.0/Doc/tutorial/stdlib2.rst-80-braces allows it to be followed by more alphanumeric letters with no intervening python3.9-3.9.0/Doc/tutorial/stdlib2.rst:81:spaces. Writing ``$$`` creates a single escaped ``$``:: python3.9-3.9.0/Doc/tutorial/stdlib2.rst-82- ############################################## python3.9-3.9.0/Doc/tools/susp-ignored.csv-137-library/http.client,,:port,host:port python3.9-3.9.0/Doc/tools/susp-ignored.csv:138:library/http.cookies,,`,!#$%&'*+-.^_`|~: python3.9-3.9.0/Doc/tools/susp-ignored.csv-139-library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS" ############################################## python3.9-3.9.0/Doc/tools/susp-ignored.csv-224-library/stdtypes,,::,>>> z = y[::-2] python3.9-3.9.0/Doc/tools/susp-ignored.csv:225:library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~" python3.9-3.9.0/Doc/tools/susp-ignored.csv-226-library/tarfile,,:bz2, ############################################## python3.9-3.9.0/Doc/tools/susp-ignored.csv-262-reference/expressions,,:index,x[index:index] python3.9-3.9.0/Doc/tools/susp-ignored.csv:263:reference/lexical_analysis,,`,$ ? ` python3.9-3.9.0/Doc/tools/susp-ignored.csv-264-reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name> ############################################## python3.9-3.9.0/Doc/tools/susp-ignored.csv-313-whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf python3.9-3.9.0/Doc/tools/susp-ignored.csv:314:library/re,,`,!#$%&'*+-.^_`|~: python3.9-3.9.0/Doc/tools/susp-ignored.csv:315:library/re,,`,!\#\$%\&'\*\+\-\.\^_`\|\~: python3.9-3.9.0/Doc/tools/susp-ignored.csv-316-library/tarfile,,:xz,'x:xz' ############################################## python3.9-3.9.0/Doc/distutils/apiref.rst-1201- Note that this is not a fully-fledged string interpolation function. A valid python3.9-3.9.0/Doc/distutils/apiref.rst:1202: ``$variable`` can consist only of upper and lower case letters, numbers and an python3.9-3.9.0/Doc/distutils/apiref.rst-1203- underscore. No { } or ( ) style quoting is available. ############################################## python3.9-3.9.0/Doc/library/configparser.rst-335- syntax, used for instance in ``zc.buildout``. Extended interpolation is python3.9-3.9.0/Doc/library/configparser.rst:336: using ``${section:option}`` to denote a value from a foreign section. python3.9-3.9.0/Doc/library/configparser.rst-337- Interpolation can span multiple levels. For convenience, if the ############################################## python3.9-3.9.0/Doc/library/email.utils.rst-62- python3.9-3.9.0/Doc/library/email.utils.rst:63:.. function:: parseaddr(address) python3.9-3.9.0/Doc/library/email.utils.rst-64- ############################################## python3.9-3.9.0/Doc/library/email.utils.rst-70- python3.9-3.9.0/Doc/library/email.utils.rst:71:.. function:: formataddr(pair, charset='utf-8') python3.9-3.9.0/Doc/library/email.utils.rst-72- ############################################## python3.9-3.9.0/Doc/library/email.utils.rst-88- python3.9-3.9.0/Doc/library/email.utils.rst:89: This method returns a list of 2-tuples of the form returned by ``parseaddr()``. python3.9-3.9.0/Doc/library/email.utils.rst-90- *fieldvalues* is a sequence of header field values as might be returned by ############################################## python3.9-3.9.0/Doc/library/asyncore.rst-350- self.create_socket() python3.9-3.9.0/Doc/library/asyncore.rst:351: self.set_reuse_addr() python3.9-3.9.0/Doc/library/asyncore.rst-352- self.bind((host, port)) ############################################## python3.9-3.9.0/Doc/library/http.cookiejar.rst-563- python3.9-3.9.0/Doc/library/http.cookiejar.rst:564: Ignore cookies in Set-Cookie: headers that have names starting with ``'$'``. python3.9-3.9.0/Doc/library/http.cookiejar.rst-565- ############################################## python3.9-3.9.0/Doc/library/tkinter.tix.rst-535- :meth:`tix_getbitmap` methods will search for image files. The standard bitmap python3.9-3.9.0/Doc/library/tkinter.tix.rst:536: directory is :file:`$TIX_LIBRARY/bitmaps`. The :meth:`tix_addbitmapdir` method python3.9-3.9.0/Doc/library/tkinter.tix.rst-537- adds *directory* into this list. By using this method, the image files of an ############################################## python3.9-3.9.0/Doc/library/socket.rst-837- python3.9-3.9.0/Doc/library/socket.rst:838:.. function:: gethostbyaddr(ip_address) python3.9-3.9.0/Doc/library/socket.rst-839- ############################################## python3.9-3.9.0/Doc/library/http.cookies.rst-25-The character set, :data:`string.ascii_letters`, :data:`string.digits` and python3.9-3.9.0/Doc/library/http.cookies.rst:26:``!#$%&'*+-.^_`|~:`` denote the set of valid characters allowed by this module python3.9-3.9.0/Doc/library/http.cookies.rst-27-in Cookie name (as :attr:`~Morsel.key`). ############################################## python3.9-3.9.0/Doc/library/logging.rst-771-``{attrname}`` as the placeholder in the format string. If you are using python3.9-3.9.0/Doc/library/logging.rst:772:$-formatting (:class:`string.Template`), use the form ``${attrname}``. In python3.9-3.9.0/Doc/library/logging.rst-773-both cases, of course, replace ``attrname`` with the actual attribute name ############################################## python3.9-3.9.0/Doc/library/logging.rst-1176- | | for the format string. One of ``'%'``, | python3.9-3.9.0/Doc/library/logging.rst:1177: | | ``'{'`` or ``'$'`` for :ref:`printf-style | python3.9-3.9.0/Doc/library/logging.rst-1178- | | <old-string-formatting>`, | ############################################## python3.9-3.9.0/Doc/library/crypt.rst-102- *salt* (either a random 2 or 16 character string, possibly prefixed with python3.9-3.9.0/Doc/library/crypt.rst:103: ``$digit$`` to indicate the method) which will be used to perturb the python3.9-3.9.0/Doc/library/crypt.rst-104- encryption algorithm. The characters in *salt* must be in the set python3.9-3.9.0/Doc/library/crypt.rst-105- ``[./a-zA-Z0-9]``, with the exception of Modular Crypt Format which python3.9-3.9.0/Doc/library/crypt.rst:106: prefixes a ``$digit$``. python3.9-3.9.0/Doc/library/crypt.rst-107- ############################################## python3.9-3.9.0/Doc/library/re.rst-427- optional and can be omitted. For example, python3.9-3.9.0/Doc/library/re.rst:428: ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>|$)`` is a poor email matching pattern, which python3.9-3.9.0/Doc/library/re.rst-429- will match with ``'<user@host.com>'`` as well as ``'user@host.com'``, but ############################################## python3.9-3.9.0/Doc/library/re.rst-435-resulting RE will match the second character. For example, ``\$`` matches the python3.9-3.9.0/Doc/library/re.rst:436:character ``'$'``. python3.9-3.9.0/Doc/library/re.rst-437- ############################################## python3.9-3.9.0/Doc/library/re.rst-706- string and at the beginning of each line (immediately following each newline); python3.9-3.9.0/Doc/library/re.rst:707: and the pattern character ``'$'`` matches at the end of the string and at the python3.9-3.9.0/Doc/library/re.rst-708- end of each line (immediately preceding each newline). By default, ``'^'`` python3.9-3.9.0/Doc/library/re.rst:709: matches only at the beginning of the string, and ``'$'`` only at the end of the python3.9-3.9.0/Doc/library/re.rst-710- string and immediately before the newline (if any) at the end of the string. ############################################## python3.9-3.9.0/Doc/library/string.rst-58- String of ASCII characters which are considered punctuation characters python3.9-3.9.0/Doc/library/string.rst:59: in the ``C`` locale: ``!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~``. python3.9-3.9.0/Doc/library/string.rst-60- ############################################## python3.9-3.9.0/Doc/library/string.rst-700- python3.9-3.9.0/Doc/library/string.rst:701:* ``$$`` is an escape; it is replaced with a single ``$``. python3.9-3.9.0/Doc/library/string.rst-702- python3.9-3.9.0/Doc/library/string.rst:703:* ``$identifier`` names a substitution placeholder matching a mapping key of python3.9-3.9.0/Doc/library/string.rst-704- ``"identifier"``. By default, ``"identifier"`` is restricted to any ############################################## python3.9-3.9.0/Doc/library/string.rst-709- python3.9-3.9.0/Doc/library/string.rst:710:* ``${identifier}`` is equivalent to ``$identifier``. It is required when python3.9-3.9.0/Doc/library/string.rst-711- valid identifier characters follow the placeholder but are not part of the python3.9-3.9.0/Doc/library/string.rst:712: placeholder, such as ``"${noun}ification"``. python3.9-3.9.0/Doc/library/string.rst-713- ############################################## python3.9-3.9.0/Doc/library/string.rst-823- python3.9-3.9.0/Doc/library/string.rst:824:* *escaped* -- This group matches the escape sequence, e.g. ``$$``, in the python3.9-3.9.0/Doc/library/string.rst-825- default pattern. ############################################## python3.9-3.9.0/Doc/library/mailcap.rst-65- The information is derived from all of the mailcap files found on the system. python3.9-3.9.0/Doc/library/mailcap.rst:66: Settings in the user's mailcap file :file:`$HOME/.mailcap` will override python3.9-3.9.0/Doc/library/mailcap.rst-67- settings in the system mailcap files :file:`/etc/mailcap`, ############################################## python3.9-3.9.0/Doc/library/os.rst-609- single: gethostname() (in module socket) python3.9-3.9.0/Doc/library/os.rst:610: single: gethostbyaddr() (in module socket) python3.9-3.9.0/Doc/library/os.rst-611- ############################################## python3.9-3.9.0/Doc/library/os.rst-628- :func:`socket.gethostname` or even python3.9-3.9.0/Doc/library/os.rst:629: ``socket.gethostbyaddr(socket.gethostname())``. python3.9-3.9.0/Doc/library/os.rst-630- ############################################## python3.9-3.9.0/Doc/library/os.path.rst-196- Return the argument with environment variables expanded. Substrings of the form python3.9-3.9.0/Doc/library/os.path.rst:197: ``$name`` or ``${name}`` are replaced by the value of environment variable python3.9-3.9.0/Doc/library/os.path.rst-198- *name*. Malformed variable names and references to non-existing variables are ############################################## python3.9-3.9.0/Doc/library/os.path.rst-200- python3.9-3.9.0/Doc/library/os.path.rst:201: On Windows, ``%name%`` expansions are supported in addition to ``$name`` and python3.9-3.9.0/Doc/library/os.path.rst:202: ``${name}``. python3.9-3.9.0/Doc/library/os.path.rst-203- ############################################## python3.9-3.9.0/Doc/using/unix.rst-95-These are subject to difference depending on local installation conventions; python3.9-3.9.0/Doc/using/unix.rst:96::envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` (``${exec_prefix}``) python3.9-3.9.0/Doc/using/unix.rst-97-are installation-dependent and should be interpreted as for GNU software; they ############################################## python3.9-3.9.0/Doc/faq/programming.rst-852-unwanted side effects. For example, someone could pass python3.9-3.9.0/Doc/faq/programming.rst:853:``__import__('os').system("rm -rf $HOME")`` which would erase your home python3.9-3.9.0/Doc/faq/programming.rst-854-directory. ############################################## python3.9-3.9.0/Modules/socketmodule.c-23-- socket.gethostbyname(hostname) --> host IP address (string: 'dd.dd.dd.dd') python3.9-3.9.0/Modules/socketmodule.c:24:- socket.gethostbyaddr(IP address) --> (hostname, [alias, ...], [IP addr, ...]) python3.9-3.9.0/Modules/socketmodule.c-25-- socket.gethostname() --> host name (string: 'spam' or 'spam.domain.com') ############################################## python3.9-3.9.0/Modules/socketmodule.c-294- python3.9-3.9.0/Modules/socketmodule.c:295:/* Headers needed for inet_ntoa() and inet_addr() */ python3.9-3.9.0/Modules/socketmodule.c-296-# include <arpa/inet.h> ############################################## python3.9-3.9.0/Modules/socketmodule.c-1074-static int python3.9-3.9.0/Modules/socketmodule.c:1075:setipaddr(const char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af) python3.9-3.9.0/Modules/socketmodule.c-1076-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1126- } python3.9-3.9.0/Modules/socketmodule.c:1127: /* special-case broadcast - inet_addr() below can return INADDR_NONE for python3.9-3.9.0/Modules/socketmodule.c-1128- * this */ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1181- memset(sin, 0, sizeof(*sin)); python3.9-3.9.0/Modules/socketmodule.c:1182: if ((sin->sin_addr.s_addr = inet_addr(name)) != INADDR_NONE) { python3.9-3.9.0/Modules/socketmodule.c-1183- sin->sin_family = AF_INET; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1206- Py_END_ALLOW_THREADS python3.9-3.9.0/Modules/socketmodule.c:1207: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.0/Modules/socketmodule.c-1208- if (error) { ############################################## python3.9-3.9.0/Modules/socketmodule.c-1232-static PyObject * python3.9-3.9.0/Modules/socketmodule.c:1233:make_ipv4_addr(const struct sockaddr_in *addr) python3.9-3.9.0/Modules/socketmodule.c-1234-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1246-static PyObject * python3.9-3.9.0/Modules/socketmodule.c:1247:make_ipv6_addr(const struct sockaddr_in6 *addr) python3.9-3.9.0/Modules/socketmodule.c-1248-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1263-static int python3.9-3.9.0/Modules/socketmodule.c:1264:setbdaddr(const char *name, bdaddr_t *bdaddr) python3.9-3.9.0/Modules/socketmodule.c-1265-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1301-static PyObject * python3.9-3.9.0/Modules/socketmodule.c:1302:makebdaddr(bdaddr_t *bdaddr) python3.9-3.9.0/Modules/socketmodule.c-1303-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1334-static PyObject * python3.9-3.9.0/Modules/socketmodule.c:1335:makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto) python3.9-3.9.0/Modules/socketmodule.c-1336-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1346- const struct sockaddr_in *a = (const struct sockaddr_in *)addr; python3.9-3.9.0/Modules/socketmodule.c:1347: PyObject *addrobj = make_ipv4_addr(a); python3.9-3.9.0/Modules/socketmodule.c-1348- PyObject *ret = NULL; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1401- const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)addr; python3.9-3.9.0/Modules/socketmodule.c:1402: PyObject *addrobj = make_ipv6_addr(a); python3.9-3.9.0/Modules/socketmodule.c-1403- PyObject *ret = NULL; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1423- struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr; python3.9-3.9.0/Modules/socketmodule.c:1424: PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr)); python3.9-3.9.0/Modules/socketmodule.c-1425- PyObject *ret = NULL; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1439- struct sockaddr_rc *a = (struct sockaddr_rc *) addr; python3.9-3.9.0/Modules/socketmodule.c:1440: PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr)); python3.9-3.9.0/Modules/socketmodule.c-1441- PyObject *ret = NULL; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1455-#if defined(__NetBSD__) || defined(__DragonFly__) python3.9-3.9.0/Modules/socketmodule.c:1456: return makebdaddr(&_BT_HCI_MEMB(a, bdaddr)); python3.9-3.9.0/Modules/socketmodule.c-1457-#else /* __NetBSD__ || __DragonFly__ */ ############################################## python3.9-3.9.0/Modules/socketmodule.c-1467- struct sockaddr_sco *a = (struct sockaddr_sco *) addr; python3.9-3.9.0/Modules/socketmodule.c:1468: return makebdaddr(&_BT_SCO_MEMB(a, bdaddr)); python3.9-3.9.0/Modules/socketmodule.c-1469- } ############################################## python3.9-3.9.0/Modules/socketmodule.c-1854- struct sockaddr_in* addr = &addrbuf->in; python3.9-3.9.0/Modules/socketmodule.c:1855: result = setipaddr(host.buf, (struct sockaddr *)addr, python3.9-3.9.0/Modules/socketmodule.c-1856- sizeof(*addr), AF_INET); ############################################## python3.9-3.9.0/Modules/socketmodule.c-1899- struct sockaddr_in6* addr = &addrbuf->in6; python3.9-3.9.0/Modules/socketmodule.c:1900: result = setipaddr(host.buf, (struct sockaddr *)addr, python3.9-3.9.0/Modules/socketmodule.c-1901- sizeof(*addr), AF_INET6); ############################################## python3.9-3.9.0/Modules/socketmodule.c-1943- } python3.9-3.9.0/Modules/socketmodule.c:1944: if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0) python3.9-3.9.0/Modules/socketmodule.c-1945- return 0; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1961- } python3.9-3.9.0/Modules/socketmodule.c:1962: if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0) python3.9-3.9.0/Modules/socketmodule.c-1963- return 0; ############################################## python3.9-3.9.0/Modules/socketmodule.c-1980- straddr = PyBytes_AS_STRING(args); python3.9-3.9.0/Modules/socketmodule.c:1981: if (setbdaddr(straddr, &_BT_HCI_MEMB(addr, bdaddr)) < 0) python3.9-3.9.0/Modules/socketmodule.c-1982- return 0; ############################################## python3.9-3.9.0/Modules/socketmodule.c-2006- straddr = PyBytes_AS_STRING(args); python3.9-3.9.0/Modules/socketmodule.c:2007: if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0) python3.9-3.9.0/Modules/socketmodule.c-2008- return 0; ############################################## python3.9-3.9.0/Modules/socketmodule.c-2793- python3.9-3.9.0/Modules/socketmodule.c:2794: addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), python3.9-3.9.0/Modules/socketmodule.c-2795- addrlen, s->sock_proto); ############################################## python3.9-3.9.0/Modules/socketmodule.c-3402- return s->errorhandler(); python3.9-3.9.0/Modules/socketmodule.c:3403: return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.0/Modules/socketmodule.c-3404- s->sock_proto); ############################################## python3.9-3.9.0/Modules/socketmodule.c-3431- return s->errorhandler(); python3.9-3.9.0/Modules/socketmodule.c:3432: return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.0/Modules/socketmodule.c-3433- s->sock_proto); ############################################## python3.9-3.9.0/Modules/socketmodule.c-3709- python3.9-3.9.0/Modules/socketmodule.c:3710: *addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.0/Modules/socketmodule.c-3711- s->sock_proto); ############################################## python3.9-3.9.0/Modules/socketmodule.c-3948- (int)msg.msg_flags, python3.9-3.9.0/Modules/socketmodule.c:3949: makesockaddr(s->sock_fd, SAS2SA(&addrbuf), python3.9-3.9.0/Modules/socketmodule.c-3950- ((msg.msg_namelen > addrbuflen) ? ############################################## python3.9-3.9.0/Modules/socketmodule.c-5538- } python3.9-3.9.0/Modules/socketmodule.c:5539: if (setipaddr(name, (struct sockaddr *)&addrbuf, sizeof(addrbuf), AF_INET) < 0) python3.9-3.9.0/Modules/socketmodule.c-5540- goto finally; python3.9-3.9.0/Modules/socketmodule.c:5541: ret = make_ipv4_addr(&addrbuf); python3.9-3.9.0/Modules/socketmodule.c-5542-finally: ############################################## python3.9-3.9.0/Modules/socketmodule.c-5556-#ifdef MS_WINDOWS python3.9-3.9.0/Modules/socketmodule.c:5557: /* Issue #26227: gethostbyaddr() returns a string encoded python3.9-3.9.0/Modules/socketmodule.c-5558- * to the ANSI code page */ ############################################## python3.9-3.9.0/Modules/socketmodule.c-5642- memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr)); python3.9-3.9.0/Modules/socketmodule.c:5643: tmp = make_ipv4_addr(&sin); python3.9-3.9.0/Modules/socketmodule.c-5644- ############################################## python3.9-3.9.0/Modules/socketmodule.c-5659- memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr)); python3.9-3.9.0/Modules/socketmodule.c:5660: tmp = make_ipv6_addr(&sin6); python3.9-3.9.0/Modules/socketmodule.c-5661- ############################################## python3.9-3.9.0/Modules/socketmodule.c-5725- } python3.9-3.9.0/Modules/socketmodule.c:5726: if (setipaddr(name, SAS2SA(&addr), sizeof(addr), AF_INET) < 0) python3.9-3.9.0/Modules/socketmodule.c-5727- goto finally; ############################################## python3.9-3.9.0/Modules/socketmodule.c-5769- python3.9-3.9.0/Modules/socketmodule.c:5770:/* Python interface to gethostbyaddr(IP). */ python3.9-3.9.0/Modules/socketmodule.c-5771- ############################################## python3.9-3.9.0/Modules/socketmodule.c-5773-static PyObject * python3.9-3.9.0/Modules/socketmodule.c:5774:socket_gethostbyaddr(PyObject *self, PyObject *args) python3.9-3.9.0/Modules/socketmodule.c-5775-{ ############################################## python3.9-3.9.0/Modules/socketmodule.c-5807- af = AF_UNSPEC; python3.9-3.9.0/Modules/socketmodule.c:5808: if (setipaddr(ip_num, sa, sizeof(addr), af) < 0) python3.9-3.9.0/Modules/socketmodule.c-5809- goto finally; ############################################## python3.9-3.9.0/Modules/socketmodule.c-5846- SUPPRESS_DEPRECATED_CALL python3.9-3.9.0/Modules/socketmodule.c:5847: h = gethostbyaddr(ap, al, af); python3.9-3.9.0/Modules/socketmodule.c-5848-#endif /* HAVE_GETHOSTBYNAME_R */ ############################################## python3.9-3.9.0/Modules/socketmodule.c-5859-PyDoc_STRVAR(gethostbyaddr_doc, python3.9-3.9.0/Modules/socketmodule.c:5860:"gethostbyaddr(host) -> (name, aliaslist, addresslist)\n\ python3.9-3.9.0/Modules/socketmodule.c-5861-\n\ ############################################## python3.9-3.9.0/Modules/socketmodule.c-6297-#endif python3.9-3.9.0/Modules/socketmodule.c:6298: /* Have to use inet_addr() instead */ python3.9-3.9.0/Modules/socketmodule.c-6299- unsigned int packed_addr; ############################################## python3.9-3.9.0/Modules/socketmodule.c-6334- SUPPRESS_DEPRECATED_CALL python3.9-3.9.0/Modules/socketmodule.c:6335: packed_addr = inet_addr(ip_addr); python3.9-3.9.0/Modules/socketmodule.c-6336- ############################################## python3.9-3.9.0/Modules/socketmodule.c-6574- Py_END_ALLOW_THREADS python3.9-3.9.0/Modules/socketmodule.c:6575: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.0/Modules/socketmodule.c-6576- if (error) { ############################################## python3.9-3.9.0/Modules/socketmodule.c-6586- PyObject *addr = python3.9-3.9.0/Modules/socketmodule.c:6587: makesockaddr(-1, res->ai_addr, res->ai_addrlen, protocol); python3.9-3.9.0/Modules/socketmodule.c-6588- if (addr == NULL) ############################################## python3.9-3.9.0/Modules/socketmodule.c-6670- Py_END_ALLOW_THREADS python3.9-3.9.0/Modules/socketmodule.c:6671: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.0/Modules/socketmodule.c-6672- if (error) { ############################################## python3.9-3.9.0/Modules/getnameinfo.c-180-#ifdef ENABLE_IPV6 python3.9-3.9.0/Modules/getnameinfo.c:181: hp = getipnodebyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af, &h_error); python3.9-3.9.0/Modules/getnameinfo.c-182-#else python3.9-3.9.0/Modules/getnameinfo.c:183: hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af); python3.9-3.9.0/Modules/getnameinfo.c-184- h_error = h_errno; ############################################## python3.9-3.9.0/Modules/_decimal/tests/runall-memorydebugger.sh-44-{ python3.9-3.9.0/Modules/_decimal/tests/runall-memorydebugger.sh:45: len=`echo $@ | wc -c` python3.9-3.9.0/Modules/_decimal/tests/runall-memorydebugger.sh:46: margin="#%"`expr \( 74 - $len \) / 2`"s" python3.9-3.9.0/Modules/_decimal/tests/runall-memorydebugger.sh-47- ############################################## python3.9-3.9.0/Modules/_decimal/_decimal.c-106-#define MPD(v) (&((PyDecObject *)v)->dec) python3.9-3.9.0/Modules/_decimal/_decimal.c:107:#define SdFlagAddr(v) (((PyDecSignalDictObject *)v)->flags) python3.9-3.9.0/Modules/_decimal/_decimal.c-108-#define SdFlags(v) (*((PyDecSignalDictObject *)v)->flags) ############################################## python3.9-3.9.0/Modules/_decimal/_decimal.c-543-{ python3.9-3.9.0/Modules/_decimal/_decimal.c:544: SdFlagAddr(self) = NULL; python3.9-3.9.0/Modules/_decimal/_decimal.c-545- return 0; ############################################## python3.9-3.9.0/Modules/_decimal/_decimal.c-1217- python3.9-3.9.0/Modules/_decimal/_decimal.c:1218: SdFlagAddr(self->traps) = &ctx->traps; python3.9-3.9.0/Modules/_decimal/_decimal.c:1219: SdFlagAddr(self->flags) = &ctx->status; python3.9-3.9.0/Modules/_decimal/_decimal.c-1220- ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/README.txt-32- vccompat.h -> snprintf <==> sprintf_s and similar things. python3.9-3.9.0/Modules/_decimal/libmpdec/README.txt:33: vcdiv64.asm -> Double word division used in typearith.h. VS 2008 does python3.9-3.9.0/Modules/_decimal/libmpdec/README.txt:34: not allow inline asm for x64. Also, it does not provide python3.9-3.9.0/Modules/_decimal/libmpdec/README.txt-35- an intrinsic for double word division. ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-511-} python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h:512:/* END PPRO GCC ASM */ python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-513-#elif defined(MASM) ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-520- python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h:521: __asm { python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-522- mov eax, dinvmod ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-549-{ python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h:550: __asm { python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-551- mov ecx, dmod ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-588-{ python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h:589: __asm { python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-590- mov ecx, dmod ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-625-} python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h:626:#endif /* PPRO MASM (_MSC_VER) */ python3.9-3.9.0/Modules/_decimal/libmpdec/umodarith.h-627- ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h-51-#elif defined(PPRO) python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h:52:/* PentiumPro (or later) gcc inline asm */ python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h-53- #define MULMOD(a, b) ppro_mulmod(a, b, &dmod, dinvmod) ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h-68- python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h:69:/* PentiumPro (or later) gcc inline asm */ python3.9-3.9.0/Modules/_decimal/libmpdec/constants.h-70-extern const float MPD_TWO63; ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h-144-} python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h:145:/* END ASM */ python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h-146- ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h-181-} python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h:182:/* END MASM (_MSC_VER) */ python3.9-3.9.0/Modules/_decimal/libmpdec/bits.h-183-#else ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-236-} python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:237:/* END GCC ASM */ python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-238-#elif defined(MASM) ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-250- python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:251:/* END MASM (_MSC_VER) */ python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-252-#else ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-493-} python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:494:/* END GCC ASM */ python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-495-#elif defined(MASM) ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-500- python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:501: __asm { python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-502- mov eax, a ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-517- python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:518: __asm { python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-519- mov eax, lo ############################################## python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-528-} python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h:529:/* END MASM (_MSC_VER) */ python3.9-3.9.0/Modules/_decimal/libmpdec/typearith.h-530-#else ############################################## python3.9-3.9.0/Modules/clinic/_tkinter.c.h-5-PyDoc_STRVAR(_tkinter_tkapp_eval__doc__, python3.9-3.9.0/Modules/clinic/_tkinter.c.h:6:"eval($self, script, /)\n" python3.9-3.9.0/Modules/clinic/_tkinter.c.h-7-"--\n" ############################################## python3.9-3.9.0/Modules/clinic/_tkinter.c.h-617-PyDoc_STRVAR(_tkinter_tkapp_interpaddr__doc__, python3.9-3.9.0/Modules/clinic/_tkinter.c.h:618:"interpaddr($self, /)\n" python3.9-3.9.0/Modules/clinic/_tkinter.c.h-619-"--\n" ############################################## python3.9-3.9.0/Modules/clinic/_tkinter.c.h-628-static PyObject * python3.9-3.9.0/Modules/clinic/_tkinter.c.h:629:_tkinter_tkapp_interpaddr(TkappObject *self, PyObject *Py_UNUSED(ignored)) python3.9-3.9.0/Modules/clinic/_tkinter.c.h-630-{ ############################################## python3.9-3.9.0/Modules/clinic/posixmodule.c.h-1730-PyDoc_STRVAR(os_system__doc__, python3.9-3.9.0/Modules/clinic/posixmodule.c.h:1731:"system($module, /, command)\n" python3.9-3.9.0/Modules/clinic/posixmodule.c.h-1732-"--\n" ############################################## python3.9-3.9.0/Modules/clinic/posixmodule.c.h-1769-PyDoc_STRVAR(os_system__doc__, python3.9-3.9.0/Modules/clinic/posixmodule.c.h:1770:"system($module, /, command)\n" python3.9-3.9.0/Modules/clinic/posixmodule.c.h-1771-"--\n" ############################################## python3.9-3.9.0/Modules/getaddrinfo.c-134- int); python3.9-3.9.0/Modules/getaddrinfo.c:135:static int get_addr(const char *, int, struct addrinfo **, python3.9-3.9.0/Modules/getaddrinfo.c-136- struct addrinfo *, int); ############################################## python3.9-3.9.0/Modules/getaddrinfo.c-379- * hostname == NULL. python3.9-3.9.0/Modules/getaddrinfo.c:380: * passive socket -> anyaddr (0.0.0.0 or ::) python3.9-3.9.0/Modules/getaddrinfo.c-381- * non-passive socket -> localhost (127.0.0.1 or ::1) ############################################## python3.9-3.9.0/Modules/getaddrinfo.c-465- /* hostname as alphabetical name */ python3.9-3.9.0/Modules/getaddrinfo.c:466: error = get_addr(hostname, pai->ai_family, &top, pai, port); python3.9-3.9.0/Modules/getaddrinfo.c-467- if (error == 0) { ############################################## python3.9-3.9.0/Modules/getaddrinfo.c-500-#ifdef ENABLE_IPV6 python3.9-3.9.0/Modules/getaddrinfo.c:501: hp = getipnodebyaddr(addr, gai_afd->a_addrlen, gai_afd->a_af, &h_error); python3.9-3.9.0/Modules/getaddrinfo.c-502-#else python3.9-3.9.0/Modules/getaddrinfo.c:503: hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET); python3.9-3.9.0/Modules/getaddrinfo.c-504-#endif ############################################## python3.9-3.9.0/Modules/getaddrinfo.c-529-static int python3.9-3.9.0/Modules/getaddrinfo.c:530:get_addr(hostname, af, res, pai, port0) python3.9-3.9.0/Modules/getaddrinfo.c-531- const char *hostname; ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-71- python3.9-3.9.0/Modules/ld_so_aix.in:72:makexp=`dirname $0`/makexp_aix python3.9-3.9.0/Modules/ld_so_aix.in-73-test -x "${makexp}" || makexp="@abs_srcdir@/makexp_aix" ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-76-CC=$1; shift python3.9-3.9.0/Modules/ld_so_aix.in:77:whichcc=`which $CC` python3.9-3.9.0/Modules/ld_so_aix.in-78- ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-103- -e* | -Wl,-e*) python3.9-3.9.0/Modules/ld_so_aix.in:104: entry=`echo $1 | sed -e "s/-Wl,//" -e "s/-e//"` python3.9-3.9.0/Modules/ld_so_aix.in-105- ;; ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-113- -o*) python3.9-3.9.0/Modules/ld_so_aix.in:114: objfile=`echo $1 | sed "s/-o//"` python3.9-3.9.0/Modules/ld_so_aix.in-115- ;; python3.9-3.9.0/Modules/ld_so_aix.in-116- -bI:* | -Wl,-bI:*) python3.9-3.9.0/Modules/ld_so_aix.in:117: impfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bI://"` python3.9-3.9.0/Modules/ld_so_aix.in-118- ;; python3.9-3.9.0/Modules/ld_so_aix.in-119- -bE:* | -Wl,-bE:*) python3.9-3.9.0/Modules/ld_so_aix.in:120: expfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bE://"` python3.9-3.9.0/Modules/ld_so_aix.in-121- ;; ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-151- python3.9-3.9.0/Modules/ld_so_aix.in:152:filename=`basename $objfile | sed "s/\.[^.]*$//"` python3.9-3.9.0/Modules/ld_so_aix.in-153- ############################################## python3.9-3.9.0/Modules/ld_so_aix.in-161-if test -z "$entry"; then python3.9-3.9.0/Modules/ld_so_aix.in:162: entry=PyInit_`echo $filename | sed "s/module.*//"` python3.9-3.9.0/Modules/ld_so_aix.in-163-fi ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-96-typedef struct ffi_aix_trampoline_struct { python3.9-3.9.0/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h:97: void* code_pointer; /* Pointer to ffi_closure_ASM */ python3.9-3.9.0/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-98- void* toc; /* TOC */ ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-375- python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:376: /* We don't have to do anything in asm for the return. */ python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-377- flags = FFI_TYPE_VOID; ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-649- python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:650: /* We don't have to do anything in asm for the return. */ python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-651- ret = FFI_TYPE_VOID; ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-33- python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-darwin.S:34:#define LIBFFI_ASM python3.9-3.9.0/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-35-#include <fficonfig.h> ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-810- contain parameters to be passed into the stack frame and setting up space python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:811: for a return value, ffi_closure_ASM invokes the following helper function python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-812- to do most of the work. */ ############################################## python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1017- python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:1018: /* Tell ffi_closure_ASM to perform return type promotions. */ python3.9-3.9.0/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1019- return cif->rtype->type; ############################################## python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c-56-extern int dlclose(void * handle) __attribute__((weak_import)); python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c:57:extern int dladdr(const void *, Dl_info *) __attribute__((weak_import)); python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c-58-#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 */ ############################################## python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c-242- python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c:243:static int darwin_dladdr(const void *handle, Dl_info *info) { python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn_simple.c-244- return 0; ############################################## python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h-41-/* python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h:42: * Structure filled in by dladdr(). python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h-43- */ ############################################## python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h-65-extern int dlclose(void * handle); python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h:66:extern int dladdr(const void *, Dl_info *); python3.9-3.9.0/Modules/_ctypes/darwin/dlfcn.h-67-#endif ############################################## python3.9-3.9.0/Modules/makesetup-72-'') case $0 in python3.9-3.9.0/Modules/makesetup:73: */*) libdir=`echo $0 | sed 's,/[^/]*$,,'`;; python3.9-3.9.0/Modules/makesetup-74- *) libdir=.;; ############################################## python3.9-3.9.0/Modules/makesetup-130- read extraline python3.9-3.9.0/Modules/makesetup:131: line=`echo $line| sed s/.$//`$extraline python3.9-3.9.0/Modules/makesetup-132- done ############################################## python3.9-3.9.0/Modules/makesetup-177- *.def) libs="$libs $arg";; python3.9-3.9.0/Modules/makesetup:178: *.o) srcs="$srcs `basename $arg .o`.c";; python3.9-3.9.0/Modules/makesetup-179- *.[cC]) srcs="$srcs $arg";; ############################################## python3.9-3.9.0/Modules/makesetup-215- case $src in python3.9-3.9.0/Modules/makesetup:216: *.c) obj=`basename $src .c`.o; cc='$(CC)';; python3.9-3.9.0/Modules/makesetup:217: *.cc) obj=`basename $src .cc`.o; cc='$(CXX)';; python3.9-3.9.0/Modules/makesetup:218: *.c++) obj=`basename $src .c++`.o; cc='$(CXX)';; python3.9-3.9.0/Modules/makesetup:219: *.C) obj=`basename $src .C`.o; cc='$(CXX)';; python3.9-3.9.0/Modules/makesetup:220: *.cxx) obj=`basename $src .cxx`.o; cc='$(CXX)';; python3.9-3.9.0/Modules/makesetup:221: *.cpp) obj=`basename $src .cpp`.o; cc='$(CXX)';; python3.9-3.9.0/Modules/makesetup:222: *.m) obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C python3.9-3.9.0/Modules/makesetup-223- *) continue;; ############################################## python3.9-3.9.0/Modules/overlapped.c-661-static PyObject * python3.9-3.9.0/Modules/overlapped.c:662:make_ipv4_addr(const struct sockaddr_in *addr) python3.9-3.9.0/Modules/overlapped.c-663-{ ############################################## python3.9-3.9.0/Modules/overlapped.c-674-static PyObject * python3.9-3.9.0/Modules/overlapped.c:675:make_ipv6_addr(const struct sockaddr_in6 *addr) python3.9-3.9.0/Modules/overlapped.c-676-{ ############################################## python3.9-3.9.0/Modules/overlapped.c-687-{ python3.9-3.9.0/Modules/overlapped.c:688: /* The function is adopted from mocketmodule.c makesockaddr()*/ python3.9-3.9.0/Modules/overlapped.c-689- ############################################## python3.9-3.9.0/Modules/overlapped.c-692- const struct sockaddr_in *a = (const struct sockaddr_in *)Address; python3.9-3.9.0/Modules/overlapped.c:693: PyObject *addrobj = make_ipv4_addr(a); python3.9-3.9.0/Modules/overlapped.c-694- PyObject *ret = NULL; ############################################## python3.9-3.9.0/Modules/overlapped.c-702- const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)Address; python3.9-3.9.0/Modules/overlapped.c:703: PyObject *addrobj = make_ipv6_addr(a); python3.9-3.9.0/Modules/overlapped.c-704- PyObject *ret = NULL; ############################################## python3.9-3.9.0/PCbuild/tcl.vcxproj-55- <TclOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TclOpts> python3.9-3.9.0/PCbuild/tcl.vcxproj:56: <TclDirs>BUILDDIRTOP="$(BuildDirTop)" INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs> python3.9-3.9.0/PCbuild/tcl.vcxproj-57- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags> ############################################## python3.9-3.9.0/PCbuild/sqlite3.vcxproj-90- <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> python3.9-3.9.0/PCbuild/sqlite3.vcxproj:91: <_SqliteVersion>$([System.Text.RegularExpressions.Regex]::Match(`$(sqlite3Dir)`, `((\d+)\.(\d+)\.(\d+)\.(\d+))\\?$`).Groups)</_SqliteVersion> python3.9-3.9.0/PCbuild/sqlite3.vcxproj-92- <SqliteVersion>$(_SqliteVersion.Split(`;`)[1])</SqliteVersion> ############################################## python3.9-3.9.0/PCbuild/python.props-56- <ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir> python3.9-3.9.0/PCbuild/python.props:57: <ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir> python3.9-3.9.0/PCbuild/python.props-58- <ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir> ############################################## python3.9-3.9.0/PCbuild/python.props-132- --> python3.9-3.9.0/PCbuild/python.props:133: <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent> python3.9-3.9.0/PCbuild/python.props-134- <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber> ############################################## python3.9-3.9.0/PCbuild/prepare_libffi.bat-85-%SH% --login -lc "cygcheck -dc cygwin" python3.9-3.9.0/PCbuild/prepare_libffi.bat:86:set GET_MSVCC=%SH% -lc "cd $OLDPWD; export MSVCC=`/usr/bin/find $PWD -name msvcc.sh`; echo ${MSVCC};" python3.9-3.9.0/PCbuild/prepare_libffi.bat-87-FOR /F "usebackq delims==" %%i IN (`%GET_MSVCC%`) do @set MSVCC=%%i ############################################## python3.9-3.9.0/PCbuild/prepare_libffi.bat-174- echo "Running tests..." python3.9-3.9.0/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.9-3.9.0/PCbuild/prepare_libffi.bat-176-) else ( ############################################## python3.9-3.9.0/PCbuild/openssl.vcxproj-69-cd /D "$(IntDir.TrimEnd('\'))" python3.9-3.9.0/PCbuild/openssl.vcxproj:70:$(Perl) "$(opensslDir)\configure" $(OpenSSLPlatform) no-asm python3.9-3.9.0/PCbuild/openssl.vcxproj-71-nmake ############################################## python3.9-3.9.0/PCbuild/tk.vcxproj-56- <TkOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TkOpts> python3.9-3.9.0/PCbuild/tk.vcxproj:57: <TkDirs>BUILDDIRTOP="$(BuildDirTop)" TCLDIR="$(tclDir.TrimEnd(`\`))" INSTALLDIR="$(OutDir.TrimEnd(`\`))"</TkDirs> python3.9-3.9.0/PCbuild/tk.vcxproj-58- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags> ############################################## python3.9-3.9.0/PCbuild/_freeze_importlib.vcxproj-139- DestinationFiles="%(None.OutFile)" python3.9-3.9.0/PCbuild/_freeze_importlib.vcxproj:140: Condition="!Exists(%(None.OutFile)) or (Exists(%(None.IntFile)) and '$([System.IO.File]::ReadAllText(%(None.OutFile)).Replace(`
`, `
`))' != '$([System.IO.File]::ReadAllText(%(None.IntFile)).Replace(`
`, `
`))')"> python3.9-3.9.0/PCbuild/_freeze_importlib.vcxproj-141- <Output TaskParameter="CopiedFiles" ItemName="_Updated" /> ############################################## python3.9-3.9.0/PCbuild/python3dll.vcxproj-145- <_Lines Include="@(_DefLines)"> python3.9-3.9.0/PCbuild/python3dll.vcxproj:146: <New>$([System.Text.RegularExpressions.Regex]::Replace($([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern1)`, `$(_Sub1)`)), `$(_Pattern2)`, `$(_Sub2)`))</New> python3.9-3.9.0/PCbuild/python3dll.vcxproj-147- </_Lines> ############################################## python3.9-3.9.0/PCbuild/python3dll.vcxproj-172- <_Lines Include="EXPORTS" /> python3.9-3.9.0/PCbuild/python3dll.vcxproj:173: <_Symbols Include="@(_DefLines)" Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(`%(Identity)`, `$(_Pattern)`))"> python3.9-3.9.0/PCbuild/python3dll.vcxproj:174: <Symbol>$([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern)`, `$(_Sub)`))</Symbol> python3.9-3.9.0/PCbuild/python3dll.vcxproj-175- </_Symbols> ############################################## python3.9-3.9.0/PCbuild/tix.vcxproj-55- <PropertyGroup> python3.9-3.9.0/PCbuild/tix.vcxproj:56: <TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs> python3.9-3.9.0/PCbuild/tix.vcxproj-57- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 TCL_DBGX=g TK_DBGX=g</DebugFlags> ############################################## python3.9-3.9.0/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \ python3.9-3.9.0/configure:46: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.0/configure-47- as_echo='print -r --' python3.9-3.9.0/configure-48- as_echo_n='print -rn --' python3.9-3.9.0/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.0/configure-50- as_echo='printf %s\n' ############################################## python3.9-3.9.0/configure-52-else python3.9-3.9.0/configure:53: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then python3.9-3.9.0/configure-54- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## python3.9-3.9.0/configure-62- expr "X$arg" : "X\\(.*\\)$as_nl"; python3.9-3.9.0/configure:63: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; python3.9-3.9.0/configure-64- esac; ############################################## python3.9-3.9.0/configure-199- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && python3.9-3.9.0/configure:200: test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 python3.9-3.9.0/configure-201-test \$(( 1 + 1 )) = 2 || exit 1" ############################################## python3.9-3.9.0/configure-327- case $as_dir in #( python3.9-3.9.0/configure:328: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( python3.9-3.9.0/configure-329- *) as_qdir=$as_dir;; ############################################## python3.9-3.9.0/configure-400- { python3.9-3.9.0/configure:401: as_val=`expr "$@" || test $? -eq 1` python3.9-3.9.0/configure-402- } ############################################## python3.9-3.9.0/configure-407-# ---------------------------------------- python3.9-3.9.0/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are python3.9-3.9.0/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## python3.9-3.9.0/configure-470- eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && python3.9-3.9.0/configure:471: test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { python3.9-3.9.0/configure-472- # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) ############################################## python3.9-3.9.0/configure-930- case $ac_option in python3.9-3.9.0/configure:931: *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; python3.9-3.9.0/configure-932- *=) ac_optarg= ;; ############################################## python3.9-3.9.0/configure-974- -disable-* | --disable-*) python3.9-3.9.0/configure:975: ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` python3.9-3.9.0/configure-976- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.0/configure-979- ac_useropt_orig=$ac_useropt python3.9-3.9.0/configure:980: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.0/configure-981- case $ac_user_opts in ############################################## python3.9-3.9.0/configure-1000- -enable-* | --enable-*) python3.9-3.9.0/configure:1001: ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` python3.9-3.9.0/configure-1002- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.0/configure-1005- ac_useropt_orig=$ac_useropt python3.9-3.9.0/configure:1006: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.0/configure-1007- case $ac_user_opts in ############################################## python3.9-3.9.0/configure-1204- -with-* | --with-*) python3.9-3.9.0/configure:1205: ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` python3.9-3.9.0/configure-1206- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.0/configure-1209- ac_useropt_orig=$ac_useropt python3.9-3.9.0/configure:1210: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.0/configure-1211- case $ac_user_opts in ############################################## python3.9-3.9.0/configure-1220- -without-* | --without-*) python3.9-3.9.0/configure:1221: ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` python3.9-3.9.0/configure-1222- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.0/configure-1225- ac_useropt_orig=$ac_useropt python3.9-3.9.0/configure:1226: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.0/configure-1227- case $ac_user_opts in ############################################## python3.9-3.9.0/configure-1258- *=*) python3.9-3.9.0/configure:1259: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` python3.9-3.9.0/configure-1260- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.0/configure-1279-if test -n "$ac_prev"; then python3.9-3.9.0/configure:1280: ac_option=--`echo $ac_prev | sed 's/_/-/g'` python3.9-3.9.0/configure-1281- as_fn_error $? "missing argument to $ac_option" ############################################## python3.9-3.9.0/configure-1301- */ ) python3.9-3.9.0/configure:1302: ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` python3.9-3.9.0/configure-1303- eval $ac_var=\$ac_val;; ############################################## python3.9-3.9.0/configure-1336-ac_ls_di=`ls -di .` && python3.9-3.9.0/configure:1337:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || python3.9-3.9.0/configure-1338- as_fn_error $? "working directory cannot be determined" ############################################## python3.9-3.9.0/configure-1392-case $srcdir in python3.9-3.9.0/configure:1393:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; python3.9-3.9.0/configure-1394-esac ############################################## python3.9-3.9.0/configure-1435-By default, \`make install' will install all the files in python3.9-3.9.0/configure:1436:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify python3.9-3.9.0/configure:1437:an installation prefix other than \`$ac_default_prefix' using \`--prefix', python3.9-3.9.0/configure-1438-for instance \`--prefix=\$HOME'. ############################################## python3.9-3.9.0/configure-1627-*) python3.9-3.9.0/configure:1628: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` python3.9-3.9.0/configure-1629- # A ".." for each directory in $ac_dir_suffix. python3.9-3.9.0/configure:1630: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` python3.9-3.9.0/configure-1631- case $ac_top_builddir_sub in ############################################## python3.9-3.9.0/configure-2284- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack python3.9-3.9.0/configure:2285: as_decl_name=`echo $2|sed 's/ *(.*//'` python3.9-3.9.0/configure:2286: as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` python3.9-3.9.0/configure-2287- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 ############################################## python3.9-3.9.0/configure-2455- *\'*) python3.9-3.9.0/configure:2456: ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.0/configure-2457- esac ############################################## python3.9-3.9.0/configure-2538- case $ac_val in python3.9-3.9.0/configure:2539: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; python3.9-3.9.0/configure-2540- esac ############################################## python3.9-3.9.0/configure-2553- case $ac_val in python3.9-3.9.0/configure:2554: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; python3.9-3.9.0/configure-2555- esac ############################################## python3.9-3.9.0/configure-2673- set,) python3.9-3.9.0/configure:2674: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 python3.9-3.9.0/configure:2675:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} python3.9-3.9.0/configure-2676- ac_cache_corrupted=: ;; ############################################## python3.9-3.9.0/configure-2684- # differences in whitespace do not lead to failure. python3.9-3.9.0/configure:2685: ac_old_val_w=`echo x $ac_old_val` python3.9-3.9.0/configure:2686: ac_new_val_w=`echo x $ac_new_val` python3.9-3.9.0/configure-2687- if test "$ac_old_val_w" != "$ac_new_val_w"; then ############################################## python3.9-3.9.0/configure-2704- case $ac_new_val in python3.9-3.9.0/configure:2705: *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.0/configure-2706- *) ac_arg=$ac_var=$ac_new_val ;; ############################################## python3.9-3.9.0/configure-2852-test "x$ac_build_alias" = x && python3.9-3.9.0/configure:2853: ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` python3.9-3.9.0/configure-2854-test "x$ac_build_alias" = x && python3.9-3.9.0/configure-2855- as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 python3.9-3.9.0/configure:2856:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || python3.9-3.9.0/configure-2857- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 ############################################## python3.9-3.9.0/configure-2876-IFS=$ac_save_IFS python3.9-3.9.0/configure:2877:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac python3.9-3.9.0/configure-2878- ############################################## python3.9-3.9.0/configure-2887-else python3.9-3.9.0/configure:2888: ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || python3.9-3.9.0/configure-2889- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 ############################################## python3.9-3.9.0/configure-2909-IFS=$ac_save_IFS python3.9-3.9.0/configure:2910:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac python3.9-3.9.0/configure-2911- ############################################## python3.9-3.9.0/configure-2990-if test "$prefix" != "/"; then python3.9-3.9.0/configure:2991: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.0/configure-2992-fi ############################################## python3.9-3.9.0/configure-3105- then python3.9-3.9.0/configure:3106: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.0/configure-3107- then ############################################## python3.9-3.9.0/configure-3138- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.0/configure:3139: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr 'A-Z' 'a-z'` python3.9-3.9.0/configure-3140- ############################################## python3.9-3.9.0/configure-3204- */Library/Frameworks) python3.9-3.9.0/configure:3205: MDIR="`dirname "${enableval}"`" python3.9-3.9.0/configure:3206: MDIR="`dirname "${MDIR}"`" python3.9-3.9.0/configure-3207- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.0/configure-3550- then python3.9-3.9.0/configure:3551: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.0/configure-3552- then ############################################## python3.9-3.9.0/configure-3927-$as_echo_n "checking whether the C compiler works... " >&6; } python3.9-3.9.0/configure:3928:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` python3.9-3.9.0/configure-3929- ############################################## python3.9-3.9.0/configure-3971- then :; else python3.9-3.9.0/configure:3972: ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` python3.9-3.9.0/configure-3973- fi ############################################## python3.9-3.9.0/configure-4031- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; python3.9-3.9.0/configure:4032: *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` python3.9-3.9.0/configure-4033- break;; ############################################## python3.9-3.9.0/configure-4140- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; python3.9-3.9.0/configure:4141: *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` python3.9-3.9.0/configure-4142- break;; ############################################## python3.9-3.9.0/configure-4526- # Check for GNU $ac_path_GREP python3.9-3.9.0/configure:4527:case `"$ac_path_GREP" --version 2>&1` in python3.9-3.9.0/configure-4528-*GNU*) ############################################## python3.9-3.9.0/configure-4595- # Check for GNU $ac_path_SED python3.9-3.9.0/configure:4596:case `"$ac_path_SED" --version 2>&1` in python3.9-3.9.0/configure-4597-*GNU*) ############################################## python3.9-3.9.0/configure-5347-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.0/configure:5348: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.0/configure-5349- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PLATFORM_TRIPLET" >&5 ############################################## python3.9-3.9.0/configure-5424- # Check for GNU $ac_path_EGREP python3.9-3.9.0/configure:5425:case `"$ac_path_EGREP" --version 2>&1` in python3.9-3.9.0/configure-5426-*GNU*) ############################################## python3.9-3.9.0/configure-5585-do : python3.9-3.9.0/configure:5586: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.0/configure-5587-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ############################################## python3.9-3.9.0/configure-5590- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:5591:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.0/configure-5592-_ACEOF ############################################## python3.9-3.9.0/configure-5845-if test "$GCC" = yes; then python3.9-3.9.0/configure:5846: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.0/configure-5847-fi python3.9-3.9.0/configure:5848:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.0/configure-5849- *GNU*) ############################################## python3.9-3.9.0/configure-6332- as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue python3.9-3.9.0/configure:6333: case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( python3.9-3.9.0/configure-6334- 'mkdir (GNU coreutils) '* | \ ############################################## python3.9-3.9.0/configure-6509- then python3.9-3.9.0/configure:6510: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.0/configure:6511: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.0/configure:6512: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.0/configure-6513- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.0/configure-7299- test "$Py_DEBUG" != "true" && \ python3.9-3.9.0/configure:7300: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.0/configure-7301- then ############################################## python3.9-3.9.0/configure-7983-do : python3.9-3.9.0/configure:7984: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.0/configure-7985-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.0/configure-7987- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:7988:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.0/configure-7989-_ACEOF ############################################## python3.9-3.9.0/configure-7996-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do python3.9-3.9.0/configure:7997: as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` python3.9-3.9.0/configure-7998-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 ############################################## python3.9-3.9.0/configure-8028- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:8029:#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 python3.9-3.9.0/configure-8030-_ACEOF ############################################## python3.9-3.9.0/configure-8313-do : python3.9-3.9.0/configure:8314: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.0/configure-8315-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " ############################################## python3.9-3.9.0/configure-8322- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:8323:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.0/configure-8324-_ACEOF ############################################## python3.9-3.9.0/configure-9514- FreeBSD*) python3.9-3.9.0/configure:9515: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.0/configure-9516- then ############################################## python3.9-3.9.0/configure-9522- OpenBSD*) python3.9-3.9.0/configure:9523: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.0/configure-9524- then ############################################## python3.9-3.9.0/configure-9630- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.0/configure:9631: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.0/configure-9632- then ############################################## python3.9-3.9.0/configure-9837-do : python3.9-3.9.0/configure:9838: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.0/configure-9839-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.0/configure-9841- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:9842:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.0/configure-9843-_ACEOF ############################################## python3.9-3.9.0/configure-10540-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.0/configure:10541: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.0/configure-10542-else ############################################## python3.9-3.9.0/configure-10648-else python3.9-3.9.0/configure:10649: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.0/configure-10650- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.0/configure-11695-do : python3.9-3.9.0/configure:11696: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.0/configure-11697-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.0/configure-11699- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:11700:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.0/configure-11701-_ACEOF ############################################## python3.9-3.9.0/configure-12819-do : python3.9-3.9.0/configure:12820: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.0/configure-12821-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.0/configure-12823- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:12824:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.0/configure-12825-_ACEOF ############################################## python3.9-3.9.0/configure-14636-do : python3.9-3.9.0/configure:14637: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.0/configure-14638-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.0/configure-14640- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:14641:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.0/configure-14642-_ACEOF ############################################## python3.9-3.9.0/configure-14648-do : python3.9-3.9.0/configure:14649: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.0/configure-14650-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.0/configure-14652- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:14653:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.0/configure-14654-_ACEOF ############################################## python3.9-3.9.0/configure-15310-$as_echo_n "checking SOABI... " >&6; } python3.9-3.9.0/configure:15311:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/configure-15312-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $SOABI" >&5 ############################################## python3.9-3.9.0/configure-15318- python3.9-3.9.0/configure:15319: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/configure-15320- ############################################## python3.9-3.9.0/configure-16095-do : python3.9-3.9.0/configure:16096: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.0/configure-16097-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.0/configure-16099- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:16100:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.0/configure-16101-_ACEOF ############################################## python3.9-3.9.0/configure-16814- python3.9-3.9.0/configure:16815:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.0/configure-16816-do ############################################## python3.9-3.9.0/configure-16926- int r; python3.9-3.9.0/configure:16927: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.0/configure-16928- "xorl %0, %0\n\t" ############################################## python3.9-3.9.0/configure-17249-do : python3.9-3.9.0/configure:17250: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.0/configure-17251-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.0/configure-17253- cat >>confdefs.h <<_ACEOF python3.9-3.9.0/configure:17254:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.0/configure-17255-_ACEOF ############################################## python3.9-3.9.0/configure-17375- if test x"$PKG_CONFIG" != x""; then python3.9-3.9.0/configure:17376: OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null` python3.9-3.9.0/configure-17377- if test $? = 0; then python3.9-3.9.0/configure:17378: OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null` python3.9-3.9.0/configure:17379: OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null` python3.9-3.9.0/configure-17380- found=true ############################################## python3.9-3.9.0/configure-17704- ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' python3.9-3.9.0/configure:17705: ac_i=`$as_echo "$ac_i" | sed "$ac_script"` python3.9-3.9.0/configure-17706- # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ############################################## python3.9-3.9.0/configure-17772-if test -z "$BASH_VERSION$ZSH_VERSION" \ python3.9-3.9.0/configure:17773: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.0/configure-17774- as_echo='print -r --' python3.9-3.9.0/configure-17775- as_echo_n='print -rn --' python3.9-3.9.0/configure:17776:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.0/configure-17777- as_echo='printf %s\n' ############################################## python3.9-3.9.0/configure-17779-else python3.9-3.9.0/configure:17780: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then python3.9-3.9.0/configure-17781- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## python3.9-3.9.0/configure-17789- expr "X$arg" : "X\\(.*\\)$as_nl"; python3.9-3.9.0/configure:17790: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; python3.9-3.9.0/configure-17791- esac; ############################################## python3.9-3.9.0/configure-17866-# ---------------------------------------- python3.9-3.9.0/configure:17867:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are python3.9-3.9.0/configure-17868-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## python3.9-3.9.0/configure-17938- { python3.9-3.9.0/configure:17939: as_val=`expr "$@" || test $? -eq 1` python3.9-3.9.0/configure-17940- } ############################################## python3.9-3.9.0/configure-18042- case $as_dir in #( python3.9-3.9.0/configure:18043: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( python3.9-3.9.0/configure-18044- *) as_qdir=$as_dir;; ############################################## python3.9-3.9.0/configure-18173-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 python3.9-3.9.0/configure:18174:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" python3.9-3.9.0/configure-18175-ac_cs_version="\\ ############################################## python3.9-3.9.0/configure-18197- --*=?*) python3.9-3.9.0/configure:18198: ac_option=`expr "X$1" : 'X\([^=]*\)='` python3.9-3.9.0/configure:18199: ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` python3.9-3.9.0/configure-18200- ac_shift=: ############################################## python3.9-3.9.0/configure-18202- --*=) python3.9-3.9.0/configure:18203: ac_option=`expr "X$1" : 'X\([^=]*\)='` python3.9-3.9.0/configure-18204- ac_optarg= ############################################## python3.9-3.9.0/configure-18226- case $ac_optarg in python3.9-3.9.0/configure:18227: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.0/configure-18228- '') as_fn_error $? "missing file argument" ;; ############################################## python3.9-3.9.0/configure-18234- case $ac_optarg in python3.9-3.9.0/configure:18235: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.0/configure-18236- esac ############################################## python3.9-3.9.0/configure-18363-fi python3.9-3.9.0/configure:18364:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` python3.9-3.9.0/configure-18365-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ############################################## python3.9-3.9.0/configure-18380- as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 python3.9-3.9.0/configure:18381:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` python3.9-3.9.0/configure-18382-ac_delim='%!_!# ' ############################################## python3.9-3.9.0/configure-18386- python3.9-3.9.0/configure:18387: ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` python3.9-3.9.0/configure-18388- if test $ac_delim_n = $ac_delim_num; then ############################################## python3.9-3.9.0/configure-18524-for ac_last_try in false false :; do python3.9-3.9.0/configure:18525: ac_tt=`sed -n "/$ac_delim/p" confdefs.h` python3.9-3.9.0/configure-18526- if test -z "$ac_tt"; then ############################################## python3.9-3.9.0/configure-18656- esac python3.9-3.9.0/configure:18657: case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac python3.9-3.9.0/configure-18658- as_fn_append ac_file_inputs " '$ac_f'" ############################################## python3.9-3.9.0/configure-18715-*) python3.9-3.9.0/configure:18716: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` python3.9-3.9.0/configure-18717- # A ".." for each directory in $ac_dir_suffix. python3.9-3.9.0/configure:18718: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` python3.9-3.9.0/configure-18719- case $ac_top_builddir_sub in ############################################## python3.9-3.9.0/configure-18776-/@mandir@/p' python3.9-3.9.0/configure:18777:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in python3.9-3.9.0/configure-18778-*datarootdir*) ac_datarootdir_seen=yes;; ############################################## python3.9-3.9.0/configure-18793- python3.9-3.9.0/configure:18794:# Neutralize VPATH when `$srcdir' = `.'. python3.9-3.9.0/configure-18795-# Shell code in configure.ac might set extrasub. ############################################## python3.9-3.9.0/configure-18821-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && python3.9-3.9.0/configure:18822: { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && python3.9-3.9.0/configure-18823- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ ############################################## python3.9-3.9.0/aclocal.m4-123- PKG_CHECK_EXISTS([$3], python3.9-3.9.0/aclocal.m4:124: [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` python3.9-3.9.0/aclocal.m4-125- test "x$?" != "x0" && pkg_failed=yes ], ############################################## python3.9-3.9.0/aclocal.m4-171- if test $_pkg_short_errors_supported = yes; then python3.9-3.9.0/aclocal.m4:172: $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` python3.9-3.9.0/aclocal.m4-173- else python3.9-3.9.0/aclocal.m4:174: $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` python3.9-3.9.0/aclocal.m4-175- fi ############################################## python3.9-3.9.0/Mac/PythonLauncher/Makefile.in-75-Info.plist: $(srcdir)/Info.plist.in python3.9-3.9.0/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.9-3.9.0/Mac/README.rst-248- python3.9-3.9.0/Mac/README.rst:249:Installing in another place, for instance ``$HOME/Library/Frameworks`` if you python3.9-3.9.0/Mac/README.rst-250-have no admin privileges on your machine, is possible. This can be accomplished python3.9-3.9.0/Mac/README.rst:251:by configuring with ``--enable-framework=$HOME/Library/Frameworks``. python3.9-3.9.0/Mac/README.rst-252-The other two directories will then also be installed in your home directory, python3.9-3.9.0/Mac/README.rst:253:at ``$HOME/Applications/Python-<VERSION>`` and ``$HOME/bin``. python3.9-3.9.0/Mac/README.rst-254- ############################################## python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-13- # we need. python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile:14: theShell="`finger $USER | grep Shell: | head -1 | awk '{ print $NF }'`" python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-15- ############################################## python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-20-# Make sure the directory ${PYTHON_ROOT}/bin is on the users PATH. python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile:21:BSH="`basename "${theShell}"`" python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-22-case "${BSH}" in ############################################## python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-24- if [ `id -ur` = 0 ]; then python3.9-3.9.0/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.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-26- else python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile:27: P="`(exec -l ${theShell} -c 'echo $PATH')`" python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-28- fi ############################################## python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-36-# Now ensure that our bin directory is on $P and before /usr/bin at that python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile:37:for elem in `echo $P | tr ':' ' '` python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-38-do ############################################## python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-92-echo "# Setting PATH for Python ${PYVER}" >> "${PR}" python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile:93:echo "# The original version is saved in `basename ${PR}`.pysave" >> "${PR}" python3.9-3.9.0/Mac/BuildScript/scripts/postflight.patch-profile-94-echo 'PATH="'"${PYTHON_ROOT}/bin"':${PATH}"' >> "${PR}" ############################################## python3.9-3.9.0/Mac/BuildScript/build-installer.py-796- # unilaterally disable assembly code building to avoid the problem. python3.9-3.9.0/Mac/BuildScript/build-installer.py:797: no_asm = int(platform.release().split(".")[0]) < 9 python3.9-3.9.0/Mac/BuildScript/build-installer.py-798- ############################################## python3.9-3.9.0/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.9-3.9.0/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.9-3.9.0/Mac/Makefile.in-224- if [ -f "$(DESTDIR)$(LIBDEST)/idlelib/config-main.def" ]; then \ ############################################## python3.9-3.9.0/Mac/Tools/pythonw.c-64- python3.9-3.9.0/Mac/Tools/pythonw.c:65: if (dladdr(Py_Initialize, &info) == 0) { python3.9-3.9.0/Mac/Tools/pythonw.c-66- return NULL; ############################################## python3.9-3.9.0/config.guess-34- python3.9-3.9.0/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'` python3.9-3.9.0/config.guess-36- ############################################## python3.9-3.9.0/config.guess-102-: ${TMPDIR=/tmp} ; python3.9-3.9.0/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || python3.9-3.9.0/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || ############################################## python3.9-3.9.0/config.guess-151- EOF python3.9-3.9.0/config.guess:152: eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" python3.9-3.9.0/config.guess-153- ############################################## python3.9-3.9.0/config.guess-188- earmv*) python3.9-3.9.0/config.guess:189: arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` python3.9-3.9.0/config.guess:190: endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` python3.9-3.9.0/config.guess-191- machine="${arch}${endian}"-unknown ############################################## python3.9-3.9.0/config.guess-220- expr='s/^earmv[0-9]/-eabi/;s/eb$//' python3.9-3.9.0/config.guess:221: abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` python3.9-3.9.0/config.guess-222- ;; ############################################## python3.9-3.9.0/config.guess-233- *) python3.9-3.9.0/config.guess:234: release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` python3.9-3.9.0/config.guess-235- ;; ############################################## python3.9-3.9.0/config.guess-280- *4.0) python3.9-3.9.0/config.guess:281: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` python3.9-3.9.0/config.guess-282- ;; python3.9-3.9.0/config.guess-283- *5.*) python3.9-3.9.0/config.guess:284: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` python3.9-3.9.0/config.guess-285- ;; ############################################## python3.9-3.9.0/config.guess-290- # types through head -n 1, so we only detect the type of CPU 0. python3.9-3.9.0/config.guess:291: ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` python3.9-3.9.0/config.guess-292- case "$ALPHA_CPU_TYPE" in ############################################## python3.9-3.9.0/config.guess-328- # 1.2 uses "1.2" for uname -r. python3.9-3.9.0/config.guess:329: echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" python3.9-3.9.0/config.guess-330- # Reset EXIT trap before exiting to avoid spurious non-zero exit code. ############################################## python3.9-3.9.0/config.guess-379- s390x:SunOS:*:*) python3.9-3.9.0/config.guess:380: echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-381- exit ;; python3.9-3.9.0/config.guess-382- sun4H:SunOS:5.*:*) python3.9-3.9.0/config.guess:383: echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-384- exit ;; python3.9-3.9.0/config.guess-385- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) python3.9-3.9.0/config.guess:386: echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-387- exit ;; ############################################## python3.9-3.9.0/config.guess-404- fi python3.9-3.9.0/config.guess:405: echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-406- exit ;; ############################################## python3.9-3.9.0/config.guess-410- # it's likely to be more like Solaris than SunOS4. python3.9-3.9.0/config.guess:411: echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-412- exit ;; ############################################## python3.9-3.9.0/config.guess-419- # Japanese Language versions have a version number like `4.1.3-JL'. python3.9-3.9.0/config.guess:420: echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" python3.9-3.9.0/config.guess-421- exit ;; ############################################## python3.9-3.9.0/config.guess-425- sun*:*:4.2BSD:*) python3.9-3.9.0/config.guess:426: UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` python3.9-3.9.0/config.guess-427- test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 ############################################## python3.9-3.9.0/config.guess-507- $CC_FOR_BUILD -o "$dummy" "$dummy.c" && python3.9-3.9.0/config.guess:508: dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && python3.9-3.9.0/config.guess:509: SYSTEM_NAME=`"$dummy" "$dummyarg"` && python3.9-3.9.0/config.guess-510- { echo "$SYSTEM_NAME"; exit; } ############################################## python3.9-3.9.0/config.guess-563- *:IRIX*:*:*) python3.9-3.9.0/config.guess:564: echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" python3.9-3.9.0/config.guess-565- exit ;; ############################################## python3.9-3.9.0/config.guess-593-EOF python3.9-3.9.0/config.guess:594: if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` python3.9-3.9.0/config.guess-595- then ############################################## python3.9-3.9.0/config.guess-606- *:AIX:*:[4567]) python3.9-3.9.0/config.guess:607: IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` python3.9-3.9.0/config.guess-608- if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then ############################################## python3.9-3.9.0/config.guess-642- 9000/[34678]??:HP-UX:*:*) python3.9-3.9.0/config.guess:643: HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` python3.9-3.9.0/config.guess-644- case "$UNAME_MACHINE" in ############################################## python3.9-3.9.0/config.guess-696-EOF python3.9-3.9.0/config.guess:697: (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` python3.9-3.9.0/config.guess-698- test -z "$HP_ARCH" && HP_ARCH=hppa ############################################## python3.9-3.9.0/config.guess-724- ia64:HP-UX:*:*) python3.9-3.9.0/config.guess:725: HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` python3.9-3.9.0/config.guess-726- echo ia64-hp-hpux"$HPUX_REV" ############################################## python3.9-3.9.0/config.guess-754-EOF python3.9-3.9.0/config.guess:755: $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && python3.9-3.9.0/config.guess-756- { echo "$SYSTEM_NAME"; exit; } ############################################## python3.9-3.9.0/config.guess-825- FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` python3.9-3.9.0/config.guess:826: FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` python3.9-3.9.0/config.guess-827- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## python3.9-3.9.0/config.guess-830- FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` python3.9-3.9.0/config.guess:831: FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` python3.9-3.9.0/config.guess-832- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## python3.9-3.9.0/config.guess-850- esac python3.9-3.9.0/config.guess:851: echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" python3.9-3.9.0/config.guess-852- exit ;; ############################################## python3.9-3.9.0/config.guess-886- prep*:SunOS:5.*:*) python3.9-3.9.0/config.guess:887: echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.0/config.guess-888- exit ;; ############################################## python3.9-3.9.0/config.guess-890- # the GNU system python3.9-3.9.0/config.guess:891: echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" python3.9-3.9.0/config.guess-892- exit ;; ############################################## python3.9-3.9.0/config.guess-894- # other systems with GNU libc and userland python3.9-3.9.0/config.guess:895: echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" python3.9-3.9.0/config.guess-896- exit ;; ############################################## python3.9-3.9.0/config.guess-988-EOF python3.9-3.9.0/config.guess:989: eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" python3.9-3.9.0/config.guess-990- test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ############################################## python3.9-3.9.0/config.guess-1088- i*86:*:4.*:*) python3.9-3.9.0/config.guess:1089: UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` python3.9-3.9.0/config.guess-1090- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then ############################################## python3.9-3.9.0/config.guess-1291- fi python3.9-3.9.0/config.guess:1292: if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then python3.9-3.9.0/config.guess-1293- if [ "$CC_FOR_BUILD" != no_compiler_found ]; then ############################################## python3.9-3.9.0/config.guess-1389- *:DragonFly:*:*) python3.9-3.9.0/config.guess:1390: echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" python3.9-3.9.0/config.guess-1391- exit ;; ############################################## python3.9-3.9.0/config.guess-1402- i*86:skyos:*:*) python3.9-3.9.0/config.guess:1403: echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" python3.9-3.9.0/config.guess-1404- exit ;; ############################################## python3.9-3.9.0/Tools/nuget/make_pkg.proj-28- <PythonArguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</PythonArguments> python3.9-3.9.0/Tools/nuget/make_pkg.proj:29: <PythonArguments>$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</PythonArguments> python3.9-3.9.0/Tools/nuget/make_pkg.proj-30- <PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)obj"</PythonArguments> ############################################## python3.9-3.9.0/Tools/clinic/clinic.py-150-c_keywords = set(""" python3.9-3.9.0/Tools/clinic/clinic.py:151:asm auto break case char const continue default do double python3.9-3.9.0/Tools/clinic/clinic.py-152-else enum extern float for goto if inline int long ############################################## python3.9-3.9.0/Tools/msi/make_zip.proj-18- <Arguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</Arguments> python3.9-3.9.0/Tools/msi/make_zip.proj:19: <Arguments>$(Arguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</Arguments> python3.9-3.9.0/Tools/msi/make_zip.proj-20- <Arguments>$(Arguments) -t "$(IntermediateOutputPath)\zip_$(ArchName)"</Arguments> ############################################## python3.9-3.9.0/Tools/msi/msi.targets-59- <PropertyGroup Condition="'@(WxlTemplate)' != ''"> python3.9-3.9.0/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.9-3.9.0/Tools/msi/msi.targets-61- <_ExistingContent Condition="Exists('$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl')">$([System.IO.File]::ReadAllText($(IntermediateOutputPath)%(WxlTemplate.Filename).wxl))</_ExistingContent> ############################################## python3.9-3.9.0/Tools/msi/bundle/bundle.targets-20- <DownloadUrl Condition="'$(DownloadUrl)' == '' and '$(DownloadUrlBase)' != ''">$(DownloadUrlBase.TrimEnd(`/`))/{version}/{arch}{releasename}/{msi}</DownloadUrl> python3.9-3.9.0/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.9-3.9.0/Tools/msi/bundle/bundle.targets-22- <DefineConstants Condition="'$(DownloadUrl)' == ''">$(DefineConstants);DownloadUrl={2}</DefineConstants> ############################################## python3.9-3.9.0/Tools/msi/uploadrelease.proj-19- <EXETarget>$(DownloadUrlBase.TrimEnd(`/`))/$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</EXETarget> python3.9-3.9.0/Tools/msi/uploadrelease.proj:20: <MSITarget>$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseLevelName)`).Replace(`{msi}`, ``).TrimEnd(`/`))</MSITarget> python3.9-3.9.0/Tools/msi/uploadrelease.proj-21- </PropertyGroup> ############################################## python3.9-3.9.0/Tools/msi/msi.props-171- <_Uuids>@(_Uuid->'("%(Identity)", "$(MajorVersionNumber).$(MinorVersionNumber)/%(Uri)")',',')</_Uuids> python3.9-3.9.0/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.9-3.9.0/Tools/msi/msi.props-173- </PropertyGroup> ############################################## python3.9-3.9.0/Tools/scripts/mailerdaemon.py-181- m = email.message_from_file(fp, _class=ErrorMessage) python3.9-3.9.0/Tools/scripts/mailerdaemon.py:182: sender = m.getaddr('From') python3.9-3.9.0/Tools/scripts/mailerdaemon.py-183- print('%s\t%-40s\t'%(fn, sender[1]), end=' ') ############################################## python3.9-3.9.0/Misc/HISTORY-1344- python3.9-3.9.0/Misc/HISTORY:1345:- Issue #17717: The Windows build scripts now use a copy of NASM pulled from python3.9-3.9.0/Misc/HISTORY-1346- svn.python.org to build OpenSSL. ############################################## python3.9-3.9.0/Misc/HISTORY-4102- python3.9-3.9.0/Misc/HISTORY:4103:- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast python3.9-3.9.0/Misc/HISTORY-4104- 64-bit pointer to long (32 bits). ############################################## python3.9-3.9.0/Misc/HISTORY-6206- python3.9-3.9.0/Misc/HISTORY:6207:- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 python3.9-3.9.0/Misc/HISTORY-6208- on Windows. ############################################## python3.9-3.9.0/Misc/HISTORY-15453- python3.9-3.9.0/Misc/HISTORY:15454:- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$` python3.9-3.9.0/Misc/HISTORY-15455- in Makefiles. This prevents compile errors when using syntax like: python3.9-3.9.0/Misc/HISTORY:15456: `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe. python3.9-3.9.0/Misc/HISTORY-15457- ############################################## python3.9-3.9.0/Misc/HISTORY-17540- python3.9-3.9.0/Misc/HISTORY:17541:- Bug #1535502, build _hashlib on Windows, and use masm assembler python3.9-3.9.0/Misc/HISTORY-17542- code in OpenSSL. ############################################## python3.9-3.9.0/Misc/HISTORY-27550- python3.9-3.9.0/Misc/HISTORY:27551: - Modify the gethostbyaddr() code to also hold on to the lock until python3.9-3.9.0/Misc/HISTORY-27552- after it is safe to release, overlapping with the Python lock. ############################################## python3.9-3.9.0/Misc/HISTORY-29125- python3.9-3.9.0/Misc/HISTORY:29126:- Add a new method of interpreter objects, interpaddr(). This returns python3.9-3.9.0/Misc/HISTORY-29127-the address of the Tcl interpreter object, as an integer. Not very ############################################## python3.9-3.9.0/Misc/HISTORY-29499-support for adding headers, though). Also fixed a bug where an python3.9-3.9.0/Misc/HISTORY:29500:illegal address would cause a crash in getrouteaddr(), fixed a python3.9-3.9.0/Misc/HISTORY-29501-sign reversal in mktime_tz(), and use the local timezone by default ############################################## python3.9-3.9.0/Misc/HISTORY-30453- python3.9-3.9.0/Misc/HISTORY:30454:- rfc822.py: Entirely rewritten parseaddr() function by Sjoerd python3.9-3.9.0/Misc/HISTORY:30455:Mullender, to be closer to the standard. This fixes the getaddr() python3.9-3.9.0/Misc/HISTORY-30456-method. Unfortunately, getaddrlist() is as broken as ever, since it ############################################## python3.9-3.9.0/Misc/HISTORY-32081- python3.9-3.9.0/Misc/HISTORY:32082:- Much improved parseaddr() in rfc822. python3.9-3.9.0/Misc/HISTORY-32083- ############################################## python3.9-3.9.0/Misc/NEWS-8018- python3.9-3.9.0/Misc/NEWS:8019:- bpo-34758: Add .wasm -> application/wasm to list of recognized file types python3.9-3.9.0/Misc/NEWS-8020- and content type headers ############################################## python3.9-3.9.0/Misc/NEWS-19390- python3.9-3.9.0/Misc/NEWS:19391:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and python3.9-3.9.0/Misc/NEWS-19392- gethostbyname_ex() functions of the socket module now decode the hostname ############################################## python3.9-3.9.0/Misc/NEWS-21672- python3.9-3.9.0/Misc/NEWS:21673:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and python3.9-3.9.0/Misc/NEWS-21674- gethostbyname_ex() functions of the socket module now decode the hostname ############################################## python3.9-3.9.0/Misc/NEWS-25574- python3.9-3.9.0/Misc/NEWS:25575:- bpo-17717: The Windows build scripts now use a copy of NASM pulled from python3.9-3.9.0/Misc/NEWS-25576- svn.python.org to build OpenSSL. ############################################## python3.9-3.9.0/config.sub-52- python3.9-3.9.0/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'` python3.9-3.9.0/config.sub-54- ############################################## python3.9-3.9.0/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations. python3.9-3.9.0/config.sub:115:maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` python3.9-3.9.0/config.sub-116-case $maybe_os in ############################################## python3.9-3.9.0/config.sub-122- os=-$maybe_os python3.9-3.9.0/config.sub:123: basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` python3.9-3.9.0/config.sub-124- ;; ############################################## python3.9-3.9.0/config.sub-126- os=-linux-android python3.9-3.9.0/config.sub:127: basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown python3.9-3.9.0/config.sub-128- ;; python3.9-3.9.0/config.sub-129- *) python3.9-3.9.0/config.sub:130: basic_machine=`echo "$1" | sed 's/-[^-]*$//'` python3.9-3.9.0/config.sub-131- if [ "$basic_machine" != "$1" ] python3.9-3.9.0/config.sub:132: then os=`echo "$1" | sed 's/.*-/-/'` python3.9-3.9.0/config.sub-133- else os=; fi ############################################## python3.9-3.9.0/config.sub-180- os=-sco5v6 python3.9-3.9.0/config.sub:181: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-182- ;; ############################################## python3.9-3.9.0/config.sub-184- os=-sco3.2v5 python3.9-3.9.0/config.sub:185: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-186- ;; ############################################## python3.9-3.9.0/config.sub-188- os=-sco3.2v4 python3.9-3.9.0/config.sub:189: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-190- ;; python3.9-3.9.0/config.sub-191- -sco3.2.[4-9]*) python3.9-3.9.0/config.sub:192: os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` python3.9-3.9.0/config.sub:193: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-194- ;; ############################################## python3.9-3.9.0/config.sub-196- # Don't forget version if it is 3.2v4 or newer. python3.9-3.9.0/config.sub:197: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-198- ;; ############################################## python3.9-3.9.0/config.sub-200- # Don't forget version if it is 3.2v4 or newer. python3.9-3.9.0/config.sub:201: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-202- ;; ############################################## python3.9-3.9.0/config.sub-204- os=-sco3.2v2 python3.9-3.9.0/config.sub:205: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-206- ;; python3.9-3.9.0/config.sub-207- -udk*) python3.9-3.9.0/config.sub:208: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-209- ;; ############################################## python3.9-3.9.0/config.sub-211- os=-isc2.2 python3.9-3.9.0/config.sub:212: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-213- ;; ############################################## python3.9-3.9.0/config.sub-217- -isc*) python3.9-3.9.0/config.sub:218: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.0/config.sub-219- ;; ############################################## python3.9-3.9.0/config.sub-229- -ptx*) python3.9-3.9.0/config.sub:230: basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` python3.9-3.9.0/config.sub-231- ;; ############################################## python3.9-3.9.0/config.sub-368- *-*-*) python3.9-3.9.0/config.sub:369: echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 python3.9-3.9.0/config.sub-370- exit 1 ############################################## python3.9-3.9.0/config.sub-497- amd64-*) python3.9-3.9.0/config.sub:498: basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-499- ;; ############################################## python3.9-3.9.0/config.sub-542- blackfin-*) python3.9-3.9.0/config.sub:543: basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-544- os=-linux ############################################## python3.9-3.9.0/config.sub-550- c54x-*) python3.9-3.9.0/config.sub:551: basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-552- ;; python3.9-3.9.0/config.sub-553- c55x-*) python3.9-3.9.0/config.sub:554: basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-555- ;; python3.9-3.9.0/config.sub-556- c6x-*) python3.9-3.9.0/config.sub:557: basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-558- ;; ############################################## python3.9-3.9.0/config.sub-654- e500v[12]-*) python3.9-3.9.0/config.sub:655: basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-656- os=$os"spe" ############################################## python3.9-3.9.0/config.sub-758- i*86v32) python3.9-3.9.0/config.sub:759: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.0/config.sub-760- os=-sysv32 ############################################## python3.9-3.9.0/config.sub-762- i*86v4*) python3.9-3.9.0/config.sub:763: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.0/config.sub-764- os=-sysv4 ############################################## python3.9-3.9.0/config.sub-766- i*86v) python3.9-3.9.0/config.sub:767: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.0/config.sub-768- os=-sysv ############################################## python3.9-3.9.0/config.sub-770- i*86sol2) python3.9-3.9.0/config.sub:771: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.0/config.sub-772- os=-solaris2 ############################################## python3.9-3.9.0/config.sub-796- leon-*|leon[3-9]-*) python3.9-3.9.0/config.sub:797: basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` python3.9-3.9.0/config.sub-798- ;; ############################################## python3.9-3.9.0/config.sub-803- m68knommu-*) python3.9-3.9.0/config.sub:804: basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-805- os=-linux ############################################## python3.9-3.9.0/config.sub-837- mips3*-*) python3.9-3.9.0/config.sub:838: basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` python3.9-3.9.0/config.sub-839- ;; python3.9-3.9.0/config.sub-840- mips3*) python3.9-3.9.0/config.sub:841: basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown python3.9-3.9.0/config.sub-842- ;; ############################################## python3.9-3.9.0/config.sub-859- ms1-*) python3.9-3.9.0/config.sub:860: basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` python3.9-3.9.0/config.sub-861- ;; ############################################## python3.9-3.9.0/config.sub-984- parisc-*) python3.9-3.9.0/config.sub:985: basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-986- os=-linux ############################################## python3.9-3.9.0/config.sub-1000- pc98-*) python3.9-3.9.0/config.sub:1001: basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1002- ;; ############################################## python3.9-3.9.0/config.sub-1015- pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) python3.9-3.9.0/config.sub:1016: basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1017- ;; python3.9-3.9.0/config.sub-1018- pentiumpro-* | p6-* | 6x86-* | athlon-*) python3.9-3.9.0/config.sub:1019: basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1020- ;; python3.9-3.9.0/config.sub-1021- pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) python3.9-3.9.0/config.sub:1022: basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1023- ;; python3.9-3.9.0/config.sub-1024- pentium4-*) python3.9-3.9.0/config.sub:1025: basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1026- ;; ############################################## python3.9-3.9.0/config.sub-1034- ppc-* | ppcbe-*) python3.9-3.9.0/config.sub:1035: basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1036- ;; ############################################## python3.9-3.9.0/config.sub-1040- ppcle-* | powerpclittle-*) python3.9-3.9.0/config.sub:1041: basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1042- ;; ############################################## python3.9-3.9.0/config.sub-1044- ;; python3.9-3.9.0/config.sub:1045: ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1046- ;; ############################################## python3.9-3.9.0/config.sub-1050- ppc64le-* | powerpc64little-*) python3.9-3.9.0/config.sub:1051: basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1052- ;; ############################################## python3.9-3.9.0/config.sub-1126- strongarm-* | thumb-*) python3.9-3.9.0/config.sub:1127: basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.0/config.sub-1128- ;; ############################################## python3.9-3.9.0/config.sub-1259- xscale-* | xscalee[bl]-*) python3.9-3.9.0/config.sub:1260: basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` python3.9-3.9.0/config.sub-1261- ;; ############################################## python3.9-3.9.0/config.sub-1321- *) python3.9-3.9.0/config.sub:1322: echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 python3.9-3.9.0/config.sub-1323- exit 1 ############################################## python3.9-3.9.0/config.sub-1329- *-digital*) python3.9-3.9.0/config.sub:1330: basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` python3.9-3.9.0/config.sub-1331- ;; python3.9-3.9.0/config.sub-1332- *-commodore*) python3.9-3.9.0/config.sub:1333: basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` python3.9-3.9.0/config.sub-1334- ;; ############################################## python3.9-3.9.0/config.sub-1350- -solaris1 | -solaris1.*) python3.9-3.9.0/config.sub:1351: os=`echo $os | sed -e 's|solaris1|sunos4|'` python3.9-3.9.0/config.sub-1352- ;; ############################################## python3.9-3.9.0/config.sub-1359- -gnu/linux*) python3.9-3.9.0/config.sub:1360: os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` python3.9-3.9.0/config.sub-1361- ;; ############################################## python3.9-3.9.0/config.sub-1411- -nto*) python3.9-3.9.0/config.sub:1412: os=`echo $os | sed -e 's|nto|nto-qnx|'` python3.9-3.9.0/config.sub-1413- ;; ############################################## python3.9-3.9.0/config.sub-1418- -mac*) python3.9-3.9.0/config.sub:1419: os=`echo "$os" | sed -e 's|mac|macos|'` python3.9-3.9.0/config.sub-1420- ;; ############################################## python3.9-3.9.0/config.sub-1424- -linux*) python3.9-3.9.0/config.sub:1425: os=`echo $os | sed -e 's|linux|linux-gnu|'` python3.9-3.9.0/config.sub-1426- ;; python3.9-3.9.0/config.sub-1427- -sunos5*) python3.9-3.9.0/config.sub:1428: os=`echo "$os" | sed -e 's|sunos5|solaris2|'` python3.9-3.9.0/config.sub-1429- ;; python3.9-3.9.0/config.sub-1430- -sunos6*) python3.9-3.9.0/config.sub:1431: os=`echo "$os" | sed -e 's|sunos6|solaris3|'` python3.9-3.9.0/config.sub-1432- ;; ############################################## python3.9-3.9.0/config.sub-1473- -sinix5.*) python3.9-3.9.0/config.sub:1474: os=`echo $os | sed -e 's|sinix|sysv|'` python3.9-3.9.0/config.sub-1475- ;; ############################################## python3.9-3.9.0/config.sub-1532- # Get rid of the `-' at the beginning of $os. python3.9-3.9.0/config.sub:1533: os=`echo $os | sed 's/[^-]*-//'` python3.9-3.9.0/config.sub:1534: echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 python3.9-3.9.0/config.sub-1535- exit 1 ############################################## python3.9-3.9.0/config.sub-1792- esac python3.9-3.9.0/config.sub:1793: basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` python3.9-3.9.0/config.sub-1794- ;; ############################################## python3.9-3.9.0/Python/clinic/bltinmodule.c.h-310-PyDoc_STRVAR(builtin_eval__doc__, python3.9-3.9.0/Python/clinic/bltinmodule.c.h:311:"eval($module, source, globals=None, locals=None, /)\n" python3.9-3.9.0/Python/clinic/bltinmodule.c.h-312-"--\n" ############################################## python3.9-3.9.0/Python/clinic/bltinmodule.c.h-356-PyDoc_STRVAR(builtin_exec__doc__, python3.9-3.9.0/Python/clinic/bltinmodule.c.h:357:"exec($module, source, globals=None, locals=None, /)\n" python3.9-3.9.0/Python/clinic/bltinmodule.c.h-358-"--\n" ############################################## python3.9-3.9.0/install-sh-234- fi python3.9-3.9.0/install-sh:235: cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; python3.9-3.9.0/install-sh-236- *) ############################################## python3.9-3.9.0/install-sh-280- dstdir=$dst python3.9-3.9.0/install-sh:281: dstbase=`basename "$src"` python3.9-3.9.0/install-sh-282- case $dst in ############################################## python3.9-3.9.0/install-sh-287- else python3.9-3.9.0/install-sh:288: dstdir=`dirname "$dst"` python3.9-3.9.0/install-sh-289- test -d "$dstdir" ############################################## python3.9-3.9.0/install-sh-354- test_tmpdir="$tmpdir/a" python3.9-3.9.0/install-sh:355: ls_ld_tmpdir=`ls -ld "$test_tmpdir"` python3.9-3.9.0/install-sh-356- case $ls_ld_tmpdir in ############################################## python3.9-3.9.0/install-sh-361- $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { python3.9-3.9.0/install-sh:362: ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` python3.9-3.9.0/install-sh-363- test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" ############################################## python3.9-3.9.0/install-sh-419- case $prefix in python3.9-3.9.0/install-sh:420: *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; python3.9-3.9.0/install-sh-421- *) qprefix=$prefix;; ############################################## python3.9-3.9.0/install-sh-468- if $copy_on_change && python3.9-3.9.0/install-sh:469: old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && python3.9-3.9.0/install-sh:470: new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && python3.9-3.9.0/install-sh-471- set -f && ############################################## python3.9-3.9.0/Lib/smtpd.py-299- @property python3.9-3.9.0/Lib/smtpd.py:300: def __addr(self): python3.9-3.9.0/Lib/smtpd.py-301- warn("Access to __addr attribute on SMTPChannel is deprecated, " ############################################## python3.9-3.9.0/Lib/smtpd.py-304- @__addr.setter python3.9-3.9.0/Lib/smtpd.py:305: def __addr(self, value): python3.9-3.9.0/Lib/smtpd.py-306- warn("Setting __addr attribute on SMTPChannel is deprecated, " ############################################## python3.9-3.9.0/Lib/smtpd.py-444- python3.9-3.9.0/Lib/smtpd.py:445: def _getaddr(self, arg): python3.9-3.9.0/Lib/smtpd.py-446- if not arg: ############################################## python3.9-3.9.0/Lib/smtpd.py-448- if arg.lstrip().startswith('<'): python3.9-3.9.0/Lib/smtpd.py:449: address, rest = get_angle_addr(arg) python3.9-3.9.0/Lib/smtpd.py-450- else: ############################################## python3.9-3.9.0/Lib/smtpd.py-503- if arg: python3.9-3.9.0/Lib/smtpd.py:504: address, params = self._getaddr(arg) python3.9-3.9.0/Lib/smtpd.py-505- if address: ############################################## python3.9-3.9.0/Lib/smtpd.py-524- arg = self._strip_command_keyword('FROM:', arg) python3.9-3.9.0/Lib/smtpd.py:525: address, params = self._getaddr(arg) python3.9-3.9.0/Lib/smtpd.py-526- if not address: ############################################## python3.9-3.9.0/Lib/smtpd.py-581- arg = self._strip_command_keyword('TO:', arg) python3.9-3.9.0/Lib/smtpd.py:582: address, params = self._getaddr(arg) python3.9-3.9.0/Lib/smtpd.py-583- if not address: ############################################## python3.9-3.9.0/Lib/smtpd.py-648- # try to re-use a server port if possible python3.9-3.9.0/Lib/smtpd.py:649: self.set_reuse_addr() python3.9-3.9.0/Lib/smtpd.py-650- self.bind(localaddr) ############################################## python3.9-3.9.0/Lib/unittest/test/test_discovery.py-86- # The test suites found should be sorted alphabetically for reliable python3.9-3.9.0/Lib/unittest/test/test_discovery.py:87: # execution order. python3.9-3.9.0/Lib/unittest/test/test_discovery.py-88- expected = [[name + ' module tests'] for name in ############################################## python3.9-3.9.0/Lib/unittest/mock.py-644- # XXXX should we get the attribute without triggering code python3.9-3.9.0/Lib/unittest/mock.py:645: # execution? python3.9-3.9.0/Lib/unittest/mock.py-646- wraps = getattr(self._mock_wraps, name) ############################################## python3.9-3.9.0/Lib/unittest/mock.py-1104- # needs to be set here so assertions on call arguments pass before python3.9-3.9.0/Lib/unittest/mock.py:1105: # execution in the case of awaited calls python3.9-3.9.0/Lib/unittest/mock.py-1106- _call = _Call((args, kwargs), two=True) ############################################## python3.9-3.9.0/Lib/email/_parseaddr.py-299- # Address is a phrase then a route addr python3.9-3.9.0/Lib/email/_parseaddr.py:300: routeaddr = self.getrouteaddr() python3.9-3.9.0/Lib/email/_parseaddr.py-301- ############################################## python3.9-3.9.0/Lib/email/_parseaddr.py-318- python3.9-3.9.0/Lib/email/_parseaddr.py:319: def getrouteaddr(self): python3.9-3.9.0/Lib/email/_parseaddr.py-320- """Parse a route address (Return-path value). ############################################## python3.9-3.9.0/Lib/email/utils.py-75- python3.9-3.9.0/Lib/email/utils.py:76:def formataddr(pair, charset='utf-8'): python3.9-3.9.0/Lib/email/utils.py:77: """The inverse of parseaddr(), this takes a 2-tuple of the form python3.9-3.9.0/Lib/email/utils.py-78- (realname, email_address) and returns the string value suitable ############################################## python3.9-3.9.0/Lib/email/utils.py-204- python3.9-3.9.0/Lib/email/utils.py:205:def parseaddr(addr): python3.9-3.9.0/Lib/email/utils.py-206- """ ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-384- python3.9-3.9.0/Lib/email/_header_value_parser.py:385:class NameAddr(TokenList): python3.9-3.9.0/Lib/email/_header_value_parser.py-386- ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-411- python3.9-3.9.0/Lib/email/_header_value_parser.py:412:class AngleAddr(TokenList): python3.9-3.9.0/Lib/email/_header_value_parser.py-413- ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1691- python3.9-3.9.0/Lib/email/_header_value_parser.py:1692:def get_angle_addr(value): python3.9-3.9.0/Lib/email/_header_value_parser.py-1693- """ angle-addr = [CFWS] "<" addr-spec ">" [CFWS] / obs-angle-addr ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1696- """ python3.9-3.9.0/Lib/email/_header_value_parser.py:1697: angle_addr = AngleAddr() python3.9-3.9.0/Lib/email/_header_value_parser.py-1698- if value[0] in CFWS_LEADER: ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1752- python3.9-3.9.0/Lib/email/_header_value_parser.py:1753:def get_name_addr(value): python3.9-3.9.0/Lib/email/_header_value_parser.py-1754- """ name-addr = [display-name] angle-addr ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1756- """ python3.9-3.9.0/Lib/email/_header_value_parser.py:1757: name_addr = NameAddr() python3.9-3.9.0/Lib/email/_header_value_parser.py-1758- # Both the optional display name and the angle-addr can start with cfws. ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1776- name_addr.append(token) python3.9-3.9.0/Lib/email/_header_value_parser.py:1777: token, value = get_angle_addr(value) python3.9-3.9.0/Lib/email/_header_value_parser.py-1778- if leader is not None: ############################################## python3.9-3.9.0/Lib/email/_header_value_parser.py-1790- try: python3.9-3.9.0/Lib/email/_header_value_parser.py:1791: token, value = get_name_addr(value) python3.9-3.9.0/Lib/email/_header_value_parser.py-1792- except errors.HeaderParseError: ############################################## python3.9-3.9.0/Lib/tkinter/test/test_tkinter/test_loadtk.py-33- # If that's the case, abort. python3.9-3.9.0/Lib/tkinter/test/test_tkinter/test_loadtk.py:34: with os.popen('echo $DISPLAY') as pipe: python3.9-3.9.0/Lib/tkinter/test/test_tkinter/test_loadtk.py-35- display = pipe.read().strip() ############################################## python3.9-3.9.0/Lib/tkinter/ttk.py-521- # since it allows doing self.tk.call(self._name, "theme", "use") python3.9-3.9.0/Lib/tkinter/ttk.py:522: return self.tk.eval("return $ttk::currentTheme") python3.9-3.9.0/Lib/tkinter/ttk.py-523- ############################################## python3.9-3.9.0/Lib/venv/scripts/common/activate-48-# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) python3.9-3.9.0/Lib/venv/scripts/common/activate:49:# could use `if (set -u; : $PYTHONHOME) ;` in bash python3.9-3.9.0/Lib/venv/scripts/common/activate-50-if [ -n "${PYTHONHOME:-}" ] ; then ############################################## python3.9-3.9.0/Lib/contextlib.py-353- os.remove(somefile) python3.9-3.9.0/Lib/contextlib.py:354: # Execution still resumes here if the file was already removed python3.9-3.9.0/Lib/contextlib.py-355- """ ############################################## python3.9-3.9.0/Lib/http/server.py-100-import shutil python3.9-3.9.0/Lib/http/server.py:101:import socket # For gethostbyaddr() python3.9-3.9.0/Lib/http/server.py-102-import socketserver ############################################## python3.9-3.9.0/Lib/importlib/_bootstrap_external.py-653- if hasattr(loader, 'get_filename'): python3.9-3.9.0/Lib/importlib/_bootstrap_external.py:654: # ExecutionLoader python3.9-3.9.0/Lib/importlib/_bootstrap_external.py-655- try: ############################################## python3.9-3.9.0/Lib/smtplib.py-144- python3.9-3.9.0/Lib/smtplib.py:145:def quoteaddr(addrstring): python3.9-3.9.0/Lib/smtplib.py-146- """Quote a subset of the email addresses defined by RFC 821. ############################################## python3.9-3.9.0/Lib/smtplib.py-149- """ python3.9-3.9.0/Lib/smtplib.py:150: displayname, addr = email.utils.parseaddr(addrstring) python3.9-3.9.0/Lib/smtplib.py-151- if (displayname, addr) == ('', ''): ############################################## python3.9-3.9.0/Lib/smtplib.py-158-def _addr_only(addrstring): python3.9-3.9.0/Lib/smtplib.py:159: displayname, addr = email.utils.parseaddr(addrstring) python3.9-3.9.0/Lib/smtplib.py-160- if (displayname, addr) == ('', ''): ############################################## python3.9-3.9.0/Lib/smtplib.py-537- optionlist = ' ' + ' '.join(options) python3.9-3.9.0/Lib/smtplib.py:538: self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender), optionlist)) python3.9-3.9.0/Lib/smtplib.py-539- return self.getreply() ############################################## python3.9-3.9.0/Lib/smtplib.py-545- optionlist = ' ' + ' '.join(options) python3.9-3.9.0/Lib/smtplib.py:546: self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist)) python3.9-3.9.0/Lib/smtplib.py-547- return self.getreply() ############################################## python3.9-3.9.0/Lib/distutils/sysconfig.py-353- v = v.strip() python3.9-3.9.0/Lib/distutils/sysconfig.py:354: # `$$' is a literal `$' in make python3.9-3.9.0/Lib/distutils/sysconfig.py-355- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/Lib/test/test_asyncore.py-471- self.create_socket(family) python3.9-3.9.0/Lib/test/test_asyncore.py:472: self.set_reuse_addr() python3.9-3.9.0/Lib/test/test_asyncore.py-473- bind_af_aware(self.socket, addr) ############################################## python3.9-3.9.0/Lib/test/test_asyncore.py-747- python3.9-3.9.0/Lib/test/test_asyncore.py:748: def test_set_reuse_addr(self): python3.9-3.9.0/Lib/test/test_asyncore.py-749- if HAS_UNIX_SOCKETS and self.family == socket.AF_UNIX: ############################################## python3.9-3.9.0/Lib/test/test_asyncore.py-764- s.create_socket(self.family) python3.9-3.9.0/Lib/test/test_asyncore.py:765: s.set_reuse_addr() python3.9-3.9.0/Lib/test/test_asyncore.py-766- self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET, ############################################## python3.9-3.9.0/Lib/test/test_socketserver.py-90- python3.9-3.9.0/Lib/test/test_socketserver.py:91: def pickaddr(self, proto): python3.9-3.9.0/Lib/test/test_socketserver.py-92- if proto == socket.AF_INET: ############################################## python3.9-3.9.0/Lib/test/test_socketserver.py-124- def run_server(self, svrcls, hdlrbase, testfunc): python3.9-3.9.0/Lib/test/test_socketserver.py:125: server = self.make_server(self.pickaddr(svrcls.address_family), python3.9-3.9.0/Lib/test/test_socketserver.py-126- svrcls, hdlrbase) ############################################## python3.9-3.9.0/Lib/test/test_socketserver.py-170- if HAVE_UNIX_SOCKETS and proto == socket.AF_UNIX: python3.9-3.9.0/Lib/test/test_socketserver.py:171: s.bind(self.pickaddr(proto)) python3.9-3.9.0/Lib/test/test_socketserver.py-172- s.sendto(TEST_STR, addr) ############################################## python3.9-3.9.0/Lib/test/test_grammar.py-326- def test_var_annot_basic_semantics(self): python3.9-3.9.0/Lib/test/test_grammar.py:327: # execution order python3.9-3.9.0/Lib/test/test_grammar.py-328- with self.assertRaises(ZeroDivisionError): ############################################## python3.9-3.9.0/Lib/test/test_json/test_encode_basestring_ascii.py-6-CASES = [ python3.9-3.9.0/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.9-3.9.0/Lib/test/test_json/test_encode_basestring_ascii.py-8- ('\u0123\u4567\u89ab\ucdef\uabcd\uef4a', '"\\u0123\\u4567\\u89ab\\ucdef\\uabcd\\uef4a"'), ############################################## python3.9-3.9.0/Lib/test/test_json/test_encode_basestring_ascii.py-14- ('\u03b1\u03a9', '"\\u03b1\\u03a9"'), python3.9-3.9.0/Lib/test/test_json/test_encode_basestring_ascii.py:15: ("`1~!@#$%^&*()_+-={':[,]}|;.</>?", '"`1~!@#$%^&*()_+-={\':[,]}|;.</>?"'), python3.9-3.9.0/Lib/test/test_json/test_encode_basestring_ascii.py-16- ('\x08\x0c\n\r\t', '"\\b\\f\\n\\r\\t"'), ############################################## python3.9-3.9.0/Lib/test/test_bz2.py-61- TEXT = b''.join(TEXT_LINES) python3.9-3.9.0/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.9-3.9.0/Lib/test/test_bz2.py-63- EMPTY_DATA = b'BZh9\x17rE8P\x90\x00\x00\x00\x00' ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1650- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1651: parser.get_angle_addr('(foo) ') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1652- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1654- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1655: parser.get_angle_addr('(foo) , next') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1656- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1658- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1659: parser.get_angle_addr('bar') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1660- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1662- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1663: parser.get_angle_addr('(foo) <, bar') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1664- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1835- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1836: parser.get_name_addr(' (foo) ') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1837- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1839- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1840: parser.get_name_addr(' (foo) ,') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1841- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1843- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1844: parser.get_name_addr('foo bar') python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1845- ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1875- python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1876: def test_get_mailbox_name_addr(self): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1877- mailbox = self._test_get_x(parser.get_mailbox, ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1916- python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1917: def test_get_mailbox_list_single_addr(self): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1918- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1934- python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1935: def test_get_mailbox_list_two_simple_addr(self): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1936- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1950- python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py:1951: def test_get_mailbox_list_two_name_addr(self): python3.9-3.9.0/Lib/test/test_email/test__header_value_parser.py-1952- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3040- def test_parseaddr_empty(self): python3.9-3.9.0/Lib/test/test_email/test_email.py:3041: self.assertEqual(utils.parseaddr('<>'), ('', '')) python3.9-3.9.0/Lib/test/test_email/test_email.py:3042: self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') python3.9-3.9.0/Lib/test/test_email/test_email.py-3043- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3045- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3046: utils.parseaddr('a@b@c'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3047- ('', '') ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3049- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3050: utils.parseaddr('a@b.c@c'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3051- ('', '') ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3053- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3054: utils.parseaddr('a@172.17.0.1@c'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3055- ('', '') ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3059- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3060: utils.formataddr(('A Silly Person', 'person@dom.ain')), python3.9-3.9.0/Lib/test/test_email/test_email.py-3061- 'A Silly Person <person@dom.ain>') ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3064- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3065: utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), python3.9-3.9.0/Lib/test/test_email/test_email.py-3066- r'"A (Very) Silly Person" <person@dom.ain>') python3.9-3.9.0/Lib/test/test_email/test_email.py-3067- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3068: utils.parseaddr(r'"A \(Very\) Silly Person" <person@dom.ain>'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3069- ('A (Very) Silly Person', 'person@dom.ain')) ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3071- b = 'person@dom.ain' python3.9-3.9.0/Lib/test/test_email/test_email.py:3072: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) python3.9-3.9.0/Lib/test/test_email/test_email.py-3073- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3075- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3076: utils.formataddr((r'Arthur \Backslash\ Foobar', 'person@dom.ain')), python3.9-3.9.0/Lib/test/test_email/test_email.py-3077- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3079- b = 'person@dom.ain' python3.9-3.9.0/Lib/test/test_email/test_email.py:3080: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) python3.9-3.9.0/Lib/test/test_email/test_email.py-3081- python3.9-3.9.0/Lib/test/test_email/test_email.py-3082- def test_quotes_unicode_names(self): python3.9-3.9.0/Lib/test/test_email/test_email.py:3083: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.0/Lib/test/test_email/test_email.py-3084- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3087- latin1_quopri = "=?iso-8859-1?q?H=E4ns_W=FCrst?= <person@dom.ain>" python3.9-3.9.0/Lib/test/test_email/test_email.py:3088: self.assertEqual(utils.formataddr((name, addr)), utf8_base64) python3.9-3.9.0/Lib/test/test_email/test_email.py:3089: self.assertEqual(utils.formataddr((name, addr), 'iso-8859-1'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3090- latin1_quopri) ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3092- def test_accepts_any_charset_like_object(self): python3.9-3.9.0/Lib/test/test_email/test_email.py:3093: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.0/Lib/test/test_email/test_email.py-3094- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3102- mock_expected = "%s <%s>" % (foobar, addr) python3.9-3.9.0/Lib/test/test_email/test_email.py:3103: self.assertEqual(utils.formataddr((name, addr), mock), mock_expected) python3.9-3.9.0/Lib/test/test_email/test_email.py:3104: self.assertEqual(utils.formataddr((name, addr), Charset('utf-8')), python3.9-3.9.0/Lib/test/test_email/test_email.py-3105- utf8_base64) ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3107- def test_invalid_charset_like_object_raises_error(self): python3.9-3.9.0/Lib/test/test_email/test_email.py:3108: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.0/Lib/test/test_email/test_email.py-3109- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3116- def test_unicode_address_raises_error(self): python3.9-3.9.0/Lib/test/test_email/test_email.py:3117: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.0/Lib/test/test_email/test_email.py-3118- addr = 'pers\u00f6n@dom.in' ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3125- a, b = ('John X. Doe', 'jxd@example.com') python3.9-3.9.0/Lib/test/test_email/test_email.py:3126: self.assertEqual(utils.parseaddr(x), (a, b)) python3.9-3.9.0/Lib/test/test_email/test_email.py:3127: self.assertEqual(utils.parseaddr(y), (a, b)) python3.9-3.9.0/Lib/test/test_email/test_email.py:3128: # formataddr() quotes the name if there's a dot in it python3.9-3.9.0/Lib/test/test_email/test_email.py:3129: self.assertEqual(utils.formataddr((a, b)), y) python3.9-3.9.0/Lib/test/test_email/test_email.py-3130- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3141- eq = self.assertEqual python3.9-3.9.0/Lib/test/test_email/test_email.py:3142: eq(utils.parseaddr('""example" example"@example.com'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3143- ('', '""example" example"@example.com')) python3.9-3.9.0/Lib/test/test_email/test_email.py:3144: eq(utils.parseaddr('"\\"example\\" example"@example.com'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3145- ('', '"\\"example\\" example"@example.com')) python3.9-3.9.0/Lib/test/test_email/test_email.py:3146: eq(utils.parseaddr('"\\\\"example\\\\" example"@example.com'), python3.9-3.9.0/Lib/test/test_email/test_email.py-3147- ('', '"\\\\"example\\\\" example"@example.com')) ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3156- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.0/Lib/test/test_email/test_email.py:3157: utils.parseaddr("merwok wok@xample.com")) python3.9-3.9.0/Lib/test/test_email/test_email.py-3158- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.0/Lib/test/test_email/test_email.py:3159: utils.parseaddr("merwok wok@xample.com")) python3.9-3.9.0/Lib/test/test_email/test_email.py-3160- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.0/Lib/test/test_email/test_email.py:3161: utils.parseaddr(" merwok wok @xample.com")) python3.9-3.9.0/Lib/test/test_email/test_email.py-3162- self.assertEqual(('', 'merwok"wok" wok@xample.com'), python3.9-3.9.0/Lib/test/test_email/test_email.py:3163: utils.parseaddr('merwok"wok" wok@xample.com')) python3.9-3.9.0/Lib/test/test_email/test_email.py-3164- self.assertEqual(('', 'merwok.wok.wok@xample.com'), python3.9-3.9.0/Lib/test/test_email/test_email.py:3165: utils.parseaddr('merwok. wok . wok@xample.com')) python3.9-3.9.0/Lib/test/test_email/test_email.py-3166- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3171- '(foo@example.com)" <foo@example.com>') python3.9-3.9.0/Lib/test/test_email/test_email.py:3172: self.assertEqual(utils.parseaddr(addrstr), addr) python3.9-3.9.0/Lib/test/test_email/test_email.py:3173: self.assertEqual(utils.formataddr(addr), addrstr) python3.9-3.9.0/Lib/test/test_email/test_email.py-3174- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3179-\tBar <foo@example.com>""" python3.9-3.9.0/Lib/test/test_email/test_email.py:3180: self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) python3.9-3.9.0/Lib/test/test_email/test_email.py-3181- ############################################## python3.9-3.9.0/Lib/test/test_email/test_email.py-3183- self.assertEqual( python3.9-3.9.0/Lib/test/test_email/test_email.py:3184: utils.formataddr(('A Silly; Person', 'person@dom.ain')), python3.9-3.9.0/Lib/test/test_email/test_email.py-3185- r'"A Silly; Person" <person@dom.ain>') ############################################## python3.9-3.9.0/Lib/test/test_importlib/test_abc.py-627- python3.9-3.9.0/Lib/test/test_importlib/test_abc.py:628:##### ExecutionLoader concrete methods ######################################### python3.9-3.9.0/Lib/test/test_importlib/test_abc.py-629-class ExecutionLoaderGetCodeTests: ############################################## python3.9-3.9.0/Lib/test/test_set.py-13- python3.9-3.9.0/Lib/test/test_set.py:14:class PassThru(Exception): python3.9-3.9.0/Lib/test/test_set.py-15- pass ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_events.py-639- python3.9-3.9.0/Lib/test/test_asyncio/test_events.py:640: def test_create_connection_local_addr(self): python3.9-3.9.0/Lib/test/test_asyncio/test_events.py-641- with test_utils.run_test_server() as httpd: ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1236- @patch_socket python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1237: def test_create_connection_multiple_errors_local_addr(self, m_socket): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1238- ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1266- python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1267: def _test_create_connection_ip_addr(self, m_socket, allow_inet_pton): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1268- # Test the fallback code, even if this system has inet_pton. ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1335- @patch_socket python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1336: def test_create_connection_ip_addr(self, m_socket): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1337: self._test_create_connection_ip_addr(m_socket, True) python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1338- ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1340- def test_create_connection_no_inet_pton(self, m_socket): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1341: self._test_create_connection_ip_addr(m_socket, False) python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1342- ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1373- python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1374: def test_create_connection_no_local_addr(self): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1375- async def getaddrinfo(host, *args, **kw): ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1834- @patch_socket python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py:1835: def test_create_datagram_endpoint_ip_addr(self, m_socket): python3.9-3.9.0/Lib/test/test_asyncio/test_base_events.py-1836- def getaddrinfo(*args, **kw): ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_proactor_events.py-614- python3.9-3.9.0/Lib/test/test_asyncio/test_proactor_events.py:615: def test_sendto_connected_addr(self): python3.9-3.9.0/Lib/test/test_asyncio/test_proactor_events.py-616- transport = self.datagram_transport(address=('0.0.0.0', 1)) ############################################## python3.9-3.9.0/Lib/test/test_asyncio/functional.py-272- @property python3.9-3.9.0/Lib/test/test_asyncio/functional.py:273: def addr(self): python3.9-3.9.0/Lib/test/test_asyncio/functional.py-274- return self._sock.getsockname() ############################################## python3.9-3.9.0/Lib/test/test_asyncio/test_selector_events.py-1257- python3.9-3.9.0/Lib/test/test_asyncio/test_selector_events.py:1258: def test_sendto_connected_addr(self): python3.9-3.9.0/Lib/test/test_asyncio/test_selector_events.py-1259- transport = self.datagram_transport(address=('0.0.0.0', 1)) ############################################## python3.9-3.9.0/Lib/test/test_smtplib.py-874- if arg in sim_users: python3.9-3.9.0/Lib/test/test_smtplib.py:875: self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg))) python3.9-3.9.0/Lib/test/test_smtplib.py-876- else: ############################################## python3.9-3.9.0/Lib/test/test_smtplib.py-883- for n, user_email in enumerate(user_list): python3.9-3.9.0/Lib/test/test_smtplib.py:884: quoted_addr = smtplib.quoteaddr(user_email) python3.9-3.9.0/Lib/test/test_smtplib.py-885- if n < len(user_list) - 1: ############################################## python3.9-3.9.0/Lib/test/test_smtplib.py-1019- expected_known = (250, bytes('%s %s' % python3.9-3.9.0/Lib/test/test_smtplib.py:1020: (name, smtplib.quoteaddr(addr_spec)), python3.9-3.9.0/Lib/test/test_smtplib.py-1021- "ascii")) ############################################## python3.9-3.9.0/Lib/test/test_smtplib.py-1035- for m in members: python3.9-3.9.0/Lib/test/test_smtplib.py:1036: users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m))) python3.9-3.9.0/Lib/test/test_smtplib.py-1037- expected_known = (250, bytes('\n'.join(users), "ascii")) ############################################## python3.9-3.9.0/Lib/test/test_smtplib.py-1230- message = EmailMessage() python3.9-3.9.0/Lib/test/test_smtplib.py:1231: message['From'] = email.utils.formataddr(('Michaël', 'michael@example.com')) python3.9-3.9.0/Lib/test/test_smtplib.py:1232: message['To'] = email.utils.formataddr(('René', 'rene@example.com')) python3.9-3.9.0/Lib/test/test_smtplib.py-1233- ############################################## python3.9-3.9.0/Lib/test/test_os.py-859- os.environ.update(HELLO="World") python3.9-3.9.0/Lib/test/test_os.py:860: with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen: python3.9-3.9.0/Lib/test/test_os.py-861- value = popen.read().strip() ############################################## python3.9-3.9.0/Lib/test/test_os.py-1034- python3.9-3.9.0/Lib/test/test_os.py:1035: with os.popen(f"{unix_shell} -c 'echo ${var}'") as popen: python3.9-3.9.0/Lib/test/test_os.py-1036- value = popen.read().strip() ############################################## python3.9-3.9.0/Lib/test/test_binascii.py-177- self.assertEqual(binascii.b2a_uu(b'\x00Cat', backtick=True), python3.9-3.9.0/Lib/test/test_binascii.py:178: b'$`$-A=```\n') python3.9-3.9.0/Lib/test/test_binascii.py:179: self.assertEqual(binascii.a2b_uu(b'$`$-A=```\n'), python3.9-3.9.0/Lib/test/test_binascii.py-180- binascii.a2b_uu(b'$ $-A= \n')) ############################################## python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-117- "FQ^5<D+|jLr?k{O39i8AX2Qb^zi9A<7XD1y!-W2|0Hk8JVkN;gl><|<0R-u4qYMbRqzSn&", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json:118: "Q7jSuvc%b+EZc%>nI(+&0Tl1Y>a6v4`uNFD-7$QrhHgS7Wnv~rDgfH;rQw3+m`LJxoM4v#", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-119- "gK@?|B{RHJ*VxZgk#!p<_&-sjxOda0YaiJ1UnG41VPv(Et%ElzKRMcO$AfgU+Xnwg5p2_+", ############################################## python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-134- "Z;j$7gJ1ows~RD=@n7I6aFd8rOR_7Y?E-$clI%1o5gA@O!KPa^(8^iFFeFykI-+z>E$mvp", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json:135: "E_h`vbHPjqkLs`Dn-0FV`R@z|h!S(Lb;M&|Exr<u8#s-T(>!biY`%bfp$6`hK;GDhdP|^Q", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json:136: "*Ty*}1d41K>H2B{jrjE9aFK>yAQJBX9CD%-384S;0fw`PlprHGS`^b$oS-`I4VH7ji8ou-", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-137- "g|060jfb1XcxiInT0oO<S+<vh^)XY;lr@|IeXj}%k;}|kSlDGaYidk^zB|gEYaet~F%QYd", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-138- "f7pbnQKLZ0o7=kso86doS;J@aQ>oeR7#%e5Ug5#KW)nV<Rc;|LjUDdhk8*dYJQwYN?hzH%", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json:139: "0<XB$!(rpf2nxaL22M`L4pKx>SRvLHNe$SQHM@2)`S9L7>RL@<XAlxVQfb2=%lcu!h+Um0", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-140- "Q+Z=itevTFy}-Jl<g5crK55BF`VsoPH~qP3QrG%YtrD#s{=gA7p)QI<i=EwY(cel8`B=#u", ############################################## python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-145- "_`30=8sfA3=!3TO_TyS5X22~?6nKngZ|bq=grdq=9X)3xAkA42L!~rmS)n3w-~;lgz%Fhn", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json:146: "(?rXdp2ho~9?wmVs2JwVt~?@FVD%`tN69{(i3oQa;O0<Hp#T5?$WIy3h`IlL00Hv}jT-;}", python3.9-3.9.0/Lib/test/test_zoneinfo/data/zoneinfo_data.json-147- "Z2tpNvBYQl0ssI200dcD" ############################################## python3.9-3.9.0/Lib/test/test_descr.py-4133- # A badly placed Py_DECREF in type_set_name led to arbitrary code python3.9-3.9.0/Lib/test/test_descr.py:4134: # execution while the type structure was not in a sane state, and a python3.9-3.9.0/Lib/test/test_descr.py-4135- # possible segmentation fault as a result. See bug #16447. ############################################## python3.9-3.9.0/Lib/test/test_socket.py-1002- try: python3.9-3.9.0/Lib/test/test_socket.py:1003: hname, aliases, ipaddrs = socket.gethostbyaddr(ip) python3.9-3.9.0/Lib/test/test_socket.py-1004- except OSError: ############################################## python3.9-3.9.0/Lib/test/test_socket.py-1018- for host in [socket_helper.HOSTv4]: python3.9-3.9.0/Lib/test/test_socket.py:1019: self.assertIn(host, socket.gethostbyaddr(host)[2]) python3.9-3.9.0/Lib/test/test_socket.py-1020- ############################################## python3.9-3.9.0/Lib/test/test_socket.py-1033- with self.assertRaises(OSError, msg=explanation): python3.9-3.9.0/Lib/test/test_socket.py:1034: socket.gethostbyaddr(addr) python3.9-3.9.0/Lib/test/test_socket.py-1035- ############################################## python3.9-3.9.0/Lib/test/test_socket.py-1588- # have a reverse entry yet python3.9-3.9.0/Lib/test/test_socket.py:1589: # socket.gethostbyaddr('испытание.python.org') python3.9-3.9.0/Lib/test/test_socket.py-1590- ############################################## python3.9-3.9.0/Lib/test/test_socket.py-2950- python3.9-3.9.0/Lib/test/test_socket.py:2951: def testSendmsgExplicitNoneAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-2952- # Check that peer address can be specified as None. ############################################## python3.9-3.9.0/Lib/test/test_socket.py-2954- python3.9-3.9.0/Lib/test/test_socket.py:2955: def _testSendmsgExplicitNoneAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-2956- self.assertEqual(self.sendmsgToServer([MSG], [], 0, None), len(MSG)) ############################################## python3.9-3.9.0/Lib/test/test_socket.py-3012- python3.9-3.9.0/Lib/test/test_socket.py:3013: def testSendmsgNoDestAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-3014- # Check that sendmsg() fails when no destination address is ############################################## python3.9-3.9.0/Lib/test/test_socket.py-3017- python3.9-3.9.0/Lib/test/test_socket.py:3018: def _testSendmsgNoDestAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-3019- self.assertRaises(OSError, self.cli_sock.sendmsg, ############################################## python3.9-3.9.0/Lib/test/test_socket.py-5459- python3.9-3.9.0/Lib/test/test_socket.py:5460: def testStrAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-5461- # Test binding to and retrieving a normal string pathname. ############################################## python3.9-3.9.0/Lib/test/test_socket.py-5466- python3.9-3.9.0/Lib/test/test_socket.py:5467: def testBytesAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-5468- # Test binding to a bytes pathname. ############################################## python3.9-3.9.0/Lib/test/test_socket.py-5482- python3.9-3.9.0/Lib/test/test_socket.py:5483: def testUnencodableAddr(self): python3.9-3.9.0/Lib/test/test_socket.py-5484- # Test binding to a pathname that cannot be encoded in the ############################################## python3.9-3.9.0/Lib/asyncore.py-290- python3.9-3.9.0/Lib/asyncore.py:291: def set_reuse_addr(self): python3.9-3.9.0/Lib/asyncore.py-292- # try to re-use a server port if possible ############################################## python3.9-3.9.0/Lib/socket.py-19-gethostbyname() -- map a hostname to its IP number python3.9-3.9.0/Lib/socket.py:20:gethostbyaddr() -- map an IP number or hostname to DNS info python3.9-3.9.0/Lib/socket.py-21-getservbyname() -- map a service name and a protocol name to a port number ############################################## python3.9-3.9.0/Lib/socket.py-782- python3.9-3.9.0/Lib/socket.py:783: First the hostname returned by gethostbyaddr() is checked, then python3.9-3.9.0/Lib/socket.py-784- possibly existing aliases. In case no FQDN is available, hostname ############################################## python3.9-3.9.0/Lib/socket.py-790- try: python3.9-3.9.0/Lib/socket.py:791: hostname, aliases, ipaddrs = gethostbyaddr(name) python3.9-3.9.0/Lib/socket.py-792- except error: ############################################## python3.9-3.9.0/Lib/profile.py-451- # effort. Also note that if too large a value specified, then python3.9-3.9.0/Lib/profile.py:452: # execution time on some functions will actually appear as a python3.9-3.9.0/Lib/profile.py-453- # negative number. It is *normal* for some functions (with very ############################################## python3.9-3.9.0/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.0/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.0/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/m4/ax_check_openssl.m4-55- if test x"$PKG_CONFIG" != x""; then python3.9-3.9.0/m4/ax_check_openssl.m4:56: OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null` python3.9-3.9.0/m4/ax_check_openssl.m4-57- if test $? = 0; then python3.9-3.9.0/m4/ax_check_openssl.m4:58: OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null` python3.9-3.9.0/m4/ax_check_openssl.m4:59: OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null` python3.9-3.9.0/m4/ax_check_openssl.m4-60- found=true ############################################## python3.9-3.9.0/Objects/memoryobject.c-210- python3.9-3.9.0/Objects/memoryobject.c:211:#define VIEW_ADDR(mv) (&((PyMemoryViewObject *)mv)->view) python3.9-3.9.0/Objects/memoryobject.c-212- ############################################## python3.9-3.9.0/Objects/memoryobject.c-2141- static char *kwlist[] = {"order", NULL}; python3.9-3.9.0/Objects/memoryobject.c:2142: Py_buffer *src = VIEW_ADDR(self); python3.9-3.9.0/Objects/memoryobject.c-2143- char *order = NULL; ############################################## python3.9-3.9.0/Objects/memoryobject.c-2206-{ python3.9-3.9.0/Objects/memoryobject.c:2207: Py_buffer *src = VIEW_ADDR(self); python3.9-3.9.0/Objects/memoryobject.c-2208- PyObject *bytes; ############################################## python3.9-3.9.0/Objects/memoryobject.c-2820- } python3.9-3.9.0/Objects/memoryobject.c:2821: vv = VIEW_ADDR(v); python3.9-3.9.0/Objects/memoryobject.c-2822- ############################################## python3.9-3.9.0/Objects/memoryobject.c-2827- } python3.9-3.9.0/Objects/memoryobject.c:2828: ww = VIEW_ADDR(w); python3.9-3.9.0/Objects/memoryobject.c-2829- } ############################################## python3.9-3.9.0/Objects/obmalloc.c-880- * have to be. In theory, if SYSTEM_PAGE_SIZE is larger than the native page python3.9-3.9.0/Objects/obmalloc.c:881: * size, then `POOL_ADDR(p)->arenaindex' could rarely cause a segmentation python3.9-3.9.0/Objects/obmalloc.c-882- * violation fault. 4K is apparently OK for all the platforms that python ############################################## python3.9-3.9.0/Objects/obmalloc.c-997-/* Round pointer P down to the closest pool-aligned address <= P, as a poolp */ python3.9-3.9.0/Objects/obmalloc.c:998:#define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE)) python3.9-3.9.0/Objects/obmalloc.c-999- ############################################## python3.9-3.9.0/Objects/obmalloc.c-1338-Return true if and only if P is an address that was allocated by pymalloc. python3.9-3.9.0/Objects/obmalloc.c:1339:POOL must be the pool address associated with P, i.e., POOL = POOL_ADDR(P) python3.9-3.9.0/Objects/obmalloc.c-1340-(the caller is asked to compute this because the macro expands POOL more than python3.9-3.9.0/Objects/obmalloc.c:1341:once, and for efficiency it's best for the caller to assign POOL_ADDR(P) to a python3.9-3.9.0/Objects/obmalloc.c-1342-variable and pass the latter to the macro; because address_in_range is ############################################## python3.9-3.9.0/Objects/obmalloc.c-1864- python3.9-3.9.0/Objects/obmalloc.c:1865: poolp pool = POOL_ADDR(p); python3.9-3.9.0/Objects/obmalloc.c-1866- if (UNLIKELY(!address_in_range(p, pool))) { ############################################## python3.9-3.9.0/Objects/obmalloc.c-1952- python3.9-3.9.0/Objects/obmalloc.c:1953: pool = POOL_ADDR(p); python3.9-3.9.0/Objects/obmalloc.c-1954- if (!address_in_range(p, pool)) { ############################################## python3.9-3.9.0/debian/dh_doclink-2- python3.9-3.9.0/debian/dh_doclink:3:pkg=`echo $1 | sed 's/^-p//'` python3.9-3.9.0/debian/dh_doclink-4-target=$2 ############################################## python3.9-3.9.0/debian/dh_doclink-8-f=debian/$pkg.postinst.debhelper python3.9-3.9.0/debian/dh_doclink:9:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then python3.9-3.9.0/debian/dh_doclink-10-cat >> $f <<EOF ############################################## python3.9-3.9.0/debian/dh_doclink-20-f=debian/$pkg.prerm.debhelper python3.9-3.9.0/debian/dh_doclink:21:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then python3.9-3.9.0/debian/dh_doclink-22-cat >> $f <<EOF ############################################## python3.9-3.9.0/debian/locale-gen-13- [ -n "$locale" -a -n "$charset" ] || continue python3.9-3.9.0/debian/locale-gen:14: echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`" python3.9-3.9.0/debian/locale-gen-15- echo -n ".$charset" python3.9-3.9.0/debian/locale-gen:16: echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'` python3.9-3.9.0/debian/locale-gen-17- echo -n '...' ############################################## python3.9-3.9.0/debian/locale-gen-20- else python3.9-3.9.0/debian/locale-gen:21: input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'` python3.9-3.9.0/debian/locale-gen-22- fi ############################################## python3.9-3.9.0/debian/patches/link-opt.diff-13- FreeBSD*) python3.9-3.9.0/debian/patches/link-opt.diff:14: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/debian/patches/link-opt.diff-15- then ############################################## python3.9-3.9.0/debian/patches/reproducible-buildinfo.diff-5-@@ -785,6 +785,8 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \ python3.9-3.9.0/debian/patches/reproducible-buildinfo.diff:6: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/debian/patches/reproducible-buildinfo.diff:7: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/debian/patches/reproducible-buildinfo.diff:8: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/debian/patches/reproducible-buildinfo.diff-9-+ $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.0/debian/rules-779- for f in debian/*.in; do \ python3.9-3.9.0/debian/rules:780: f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \ python3.9-3.9.0/debian/rules-781- if [ $$f2 != debian/control ] && [ $$f2 != debian/source.lintian-overrides ]; then \ ############################################## python3.9-3.9.0/debian/rules-791- for f in debian/*.in; do \ python3.9-3.9.0/debian/rules:792: f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \ python3.9-3.9.0/debian/rules-793- if [ $$f2 != debian/control ]; then \ ############################################## python3.9-3.9.0/debian/rules-1467- dh_shlibdeps -a python3.9-3.9.0/debian/rules:1468: dep=`sed -n '/^shlibs:Depends/s/[^=]*=\(.*\)/\1/p' $(d_min).substvars | awk -v RS=', ' -v ORS=', ' '/^libc6/ { print }'`; \ python3.9-3.9.0/debian/rules-1469- echo "shlibs:Pre-Depends=$$dep" >> $(d_min).substvars ############################################## python3.9-3.9.0/.pc/git-updates.diff/Doc/faq/programming.rst-852-unwanted side effects. For example, someone could pass python3.9-3.9.0/.pc/git-updates.diff/Doc/faq/programming.rst:853:``__import__('os').system("rm -rf $HOME")`` which would erase your home python3.9-3.9.0/.pc/git-updates.diff/Doc/faq/programming.rst-854-directory. ############################################## python3.9-3.9.0/.pc/git-updates.diff/Lib/profile.py-451- # effort. Also note that if too large a value specified, then python3.9-3.9.0/.pc/git-updates.diff/Lib/profile.py:452: # execution time on some functions will actually appear as a python3.9-3.9.0/.pc/git-updates.diff/Lib/profile.py-453- # negative number. It is *normal* for some functions (with very ############################################## python3.9-3.9.0/.pc/git-updates.diff/Mac/BuildScript/build-installer.py-796- # unilaterally disable assembly code building to avoid the problem. python3.9-3.9.0/.pc/git-updates.diff/Mac/BuildScript/build-installer.py:797: no_asm = int(platform.release().split(".")[0]) < 9 python3.9-3.9.0/.pc/git-updates.diff/Mac/BuildScript/build-installer.py-798- ############################################## python3.9-3.9.0/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-327- v = v.strip() python3.9-3.9.0/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py:328: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-329- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-334- v = v.strip() python3.9-3.9.0/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py:335: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-336- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-94-fi ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-207- then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-209- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.0/.pc/link-opt.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-630- then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-632- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1069-fi python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1347- then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.0/.pc/link-opt.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-1774- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2651- FreeBSD*) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:2652: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2653- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2659- OpenBSD*) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:2660: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2661- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2763- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:2764: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/link-opt.diff/configure.ac-2765- then ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-3085-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.0/.pc/link-opt.diff/configure.ac:3086: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-3087-else ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-3162-else python3.9-3.9.0/.pc/link-opt.diff/configure.ac:3163: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.0/.pc/link-opt.diff/configure.ac-3164- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-4751-AC_MSG_CHECKING(SOABI) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:4752:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/link-opt.diff/configure.ac-4753-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-4758- AC_SUBST(ALT_SOABI) python3.9-3.9.0/.pc/link-opt.diff/configure.ac:4759: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/link-opt.diff/configure.ac-4760- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-5446- python3.9-3.9.0/.pc/link-opt.diff/configure.ac:5447:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.0/.pc/link-opt.diff/configure.ac-5448-do ############################################## python3.9-3.9.0/.pc/link-opt.diff/configure.ac-5518- int r; python3.9-3.9.0/.pc/link-opt.diff/configure.ac:5519: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.0/.pc/link-opt.diff/configure.ac-5520- "xorl %0, %0\n\t" ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-625-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:626: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-627- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-774- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:775: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:776: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:777: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-778- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1271- if test $$i != X; then \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:1272: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:1273: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1274- fi; \ ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1501- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:1502: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1503- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1656- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:1657: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1658- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1714- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in:1715: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/.pc/profiled-build.diff/Makefile.pre.in-1716- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-94-fi ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-207- then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-209- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-630- then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-632- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1069-fi python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1347- then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-1774- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2651- FreeBSD*) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:2652: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2653- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2659- OpenBSD*) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:2660: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2661- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2763- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:2764: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-2765- then ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-3085-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:3086: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-3087-else ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-3162-else python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:3163: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-3164- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-4751-AC_MSG_CHECKING(SOABI) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:4752:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-4753-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-4758- AC_SUBST(ALT_SOABI) python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:4759: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-4760- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-5446- python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:5447:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-5448-do ############################################## python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-5518- int r; python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac:5519: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.0/.pc/disable-sem-check.diff/configure.ac-5520- "xorl %0, %0\n\t" ############################################## python3.9-3.9.0/.pc/multiarch.diff/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.0/.pc/multiarch.diff/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/multiarch.diff/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/multiarch.diff/Lib/distutils/sysconfig.py-345- v = v.strip() python3.9-3.9.0/.pc/multiarch.diff/Lib/distutils/sysconfig.py:346: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/multiarch.diff/Lib/distutils/sysconfig.py-347- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-788- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1281- if test $$i != X; then \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:1282: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:1283: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1284- fi; \ ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1511- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:1512: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1513- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1666- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:1667: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1668- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1724- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in:1725: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/.pc/multiarch.diff/Makefile.pre.in-1726- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-348- v = v.strip() python3.9-3.9.0/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py:349: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-350- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-788- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1282- if test $$i != X; then \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1283: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1284: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1285- fi; \ ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1512- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1513: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1514- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1667- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1668: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1669- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1725- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1726: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1727- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-788- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1284- if test $$i != X; then \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:1285: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:1286: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1287- fi; \ ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1514- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:1515: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1516- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1669- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:1670: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1671- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1727- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in:1728: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/.pc/build-math-object.diff/Makefile.pre.in-1729- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-353- v = v.strip() python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py:354: # `$$' is a literal `$' in make python3.9-3.9.0/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-355- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-637-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:638: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-639- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-786- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:787: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:788: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:789: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-790- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1286- if test $$i != X; then \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:1287: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:1288: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1289- fi; \ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1516- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:1517: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1518- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1671- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:1672: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1673- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1729- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in:1730: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/.pc/sysconfigdata-name.diff/Makefile.pre.in-1731- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-94-fi ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-207- then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-209- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-630- then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-632- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1069-fi python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1347- then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-1774- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2651- FreeBSD*) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:2652: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2653- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2659- OpenBSD*) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:2660: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2661- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2763- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:2764: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-2765- then ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-3085-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:3086: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-3087-else ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-3162-else python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:3163: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-3164- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-4761-AC_MSG_CHECKING(SOABI) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:4762:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-4763-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-4768- AC_SUBST(ALT_SOABI) python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:4769: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-4770- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-5456- python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:5457:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-5458-do ############################################## python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-5528- int r; python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac:5529: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.0/.pc/sysconfigdata-name.diff/configure.ac-5530- "xorl %0, %0\n\t" ############################################## python3.9-3.9.0/Makefile.pre.in-637-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.0/Makefile.pre.in:638: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.0/Makefile.pre.in-639- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.0/Makefile.pre.in-786- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.0/Makefile.pre.in:787: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.0/Makefile.pre.in:788: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.0/Makefile.pre.in:789: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.0/Makefile.pre.in-790- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.0/Makefile.pre.in-1286- if test $$i != X; then \ python3.9-3.9.0/Makefile.pre.in:1287: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/Makefile.pre.in:1288: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.0/Makefile.pre.in-1289- fi; \ ############################################## python3.9-3.9.0/Makefile.pre.in-1516- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.0/Makefile.pre.in:1517: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.0/Makefile.pre.in-1518- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.0/Makefile.pre.in-1673- @if [ -s Modules/python.exp -a \ python3.9-3.9.0/Makefile.pre.in:1674: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.0/Makefile.pre.in-1675- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.0/Makefile.pre.in-1732- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.0/Makefile.pre.in:1733: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.0/Makefile.pre.in-1734- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.0/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.0/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.0/configure.ac-94-fi ############################################## python3.9-3.9.0/configure.ac-207- then python3.9-3.9.0/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.0/configure.ac-209- then ############################################## python3.9-3.9.0/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.0/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.0/configure.ac-243- ],[ ############################################## python3.9-3.9.0/configure.ac-307- */Library/Frameworks) python3.9-3.9.0/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.0/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.0/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.0/configure.ac-630- then python3.9-3.9.0/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.0/configure.ac-632- then ############################################## python3.9-3.9.0/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.0/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.0/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.0/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.0/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.0/configure.ac-1069-fi python3.9-3.9.0/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.0/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.0/configure.ac-1347- then python3.9-3.9.0/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.0/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.0/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.0/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.0/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.0/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.0/configure.ac-1774- then ############################################## python3.9-3.9.0/configure.ac-2651- FreeBSD*) python3.9-3.9.0/configure.ac:2652: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/configure.ac-2653- then ############################################## python3.9-3.9.0/configure.ac-2659- OpenBSD*) python3.9-3.9.0/configure.ac:2660: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/configure.ac-2661- then ############################################## python3.9-3.9.0/configure.ac-2763- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.0/configure.ac:2764: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.0/configure.ac-2765- then ############################################## python3.9-3.9.0/configure.ac-3085-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.0/configure.ac:3086: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.0/configure.ac-3087-else ############################################## python3.9-3.9.0/configure.ac-3162-else python3.9-3.9.0/configure.ac:3163: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.0/configure.ac-3164- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.0/configure.ac-4761-AC_MSG_CHECKING(SOABI) python3.9-3.9.0/configure.ac:4762:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/configure.ac-4763-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.0/configure.ac-4768- AC_SUBST(ALT_SOABI) python3.9-3.9.0/configure.ac:4769: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.0/configure.ac-4770- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.0/configure.ac-5456- python3.9-3.9.0/configure.ac:5457:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.0/configure.ac-5458-do ############################################## python3.9-3.9.0/configure.ac-5528- int r; python3.9-3.9.0/configure.ac:5529: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.0/configure.ac-5530- "xorl %0, %0\n\t" ############################################## python3.9-3.9.1~rc1/README.rst-210-version and can thus live side-by-side. ``make install`` also creates python3.9-3.9.1~rc1/README.rst:211:``${prefix}/bin/python3`` which refers to ``${prefix}/bin/pythonX.Y``. If you python3.9-3.9.1~rc1/README.rst-212-intend to install multiple versions using the same prefix you must decide which ############################################## python3.9-3.9.1~rc1/Doc/howto/logging-cookbook.rst-1057-additional, optional keyword parameter named ``style``. This defaults to python3.9-3.9.1~rc1/Doc/howto/logging-cookbook.rst:1058:``'%'``, but other possible values are ``'{'`` and ``'$'``, which correspond python3.9-3.9.1~rc1/Doc/howto/logging-cookbook.rst-1059-to the other two formatting styles. Backwards compatibility is maintained by ############################################## python3.9-3.9.1~rc1/Doc/howto/regex.rst-91- python3.9-3.9.1~rc1/Doc/howto/regex.rst:92:Metacharacters are not active inside classes. For example, ``[akm$]`` will python3.9-3.9.1~rc1/Doc/howto/regex.rst:93:match any of the characters ``'a'``, ``'k'``, ``'m'``, or ``'$'``; ``'$'`` is python3.9-3.9.1~rc1/Doc/howto/regex.rst-94-usually a metacharacter, but inside a character class it's stripped of its ############################################## python3.9-3.9.1~rc1/Doc/howto/regex.rst-730- python3.9-3.9.1~rc1/Doc/howto/regex.rst:731: To match a literal ``'$'``, use ``\$`` or enclose it inside a character class, python3.9-3.9.1~rc1/Doc/howto/regex.rst:732: as in ``[$]``. python3.9-3.9.1~rc1/Doc/howto/regex.rst-733- ############################################## python3.9-3.9.1~rc1/Doc/howto/regex.rst-1041- python3.9-3.9.1~rc1/Doc/howto/regex.rst:1042:``.*[.](?!bat$)[^.]*$`` The negative lookahead means: if the expression ``bat`` python3.9-3.9.1~rc1/Doc/howto/regex.rst-1043-doesn't match at this point, try the rest of the pattern; if ``bat$`` does ############################################## python3.9-3.9.1~rc1/Doc/howto/regex.rst-1052- python3.9-3.9.1~rc1/Doc/howto/regex.rst:1053:``.*[.](?!bat$|exe$)[^.]*$`` python3.9-3.9.1~rc1/Doc/howto/regex.rst-1054- ############################################## python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst-281- tracing script as positional arguments, which must be accessed using python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst:282: ``$arg1``, ``$arg2``, ``$arg3``: python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst-283- python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst:284: * ``$arg1`` : ``(const char *)`` filename, accessible using ``user_string($arg1)`` python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst-285- python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst:286: * ``$arg2`` : ``(const char *)`` function name, accessible using python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst:287: ``user_string($arg2)`` python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst-288- python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst:289: * ``$arg3`` : ``int`` line number python3.9-3.9.1~rc1/Doc/howto/instrumentation.rst-290- ############################################## python3.9-3.9.1~rc1/Doc/install/index.rst-574- python3.9-3.9.1~rc1/Doc/install/index.rst:575:``$PLAT`` is not (necessarily) an environment variable---it will be expanded by python3.9-3.9.1~rc1/Doc/install/index.rst-576-the Distutils as it parses your command line options, just as it does when ############################################## python3.9-3.9.1~rc1/Doc/install/index.rst-611- python3.9-3.9.1~rc1/Doc/install/index.rst:612:You probably noticed the use of ``$HOME`` and ``$PLAT`` in the sample python3.9-3.9.1~rc1/Doc/install/index.rst-613-configuration file input. These are Distutils configuration variables, which ############################################## python3.9-3.9.1~rc1/Doc/install/index.rst-616-the Distutils additionally define a few extra variables that may not be in your python3.9-3.9.1~rc1/Doc/install/index.rst:617:environment, such as ``$PLAT``. (And of course, on systems that don't have python3.9-3.9.1~rc1/Doc/install/index.rst-618-environment variables, such as Mac OS 9, the configuration variables supplied by ############################################## python3.9-3.9.1~rc1/Doc/install/index.rst-738-+--------------+----------------------------------------------------------+-------+ python3.9-3.9.1~rc1/Doc/install/index.rst:739:| personal | :file:`$HOME/.pydistutils.cfg` | \(2) | python3.9-3.9.1~rc1/Doc/install/index.rst-740-+--------------+----------------------------------------------------------+-------+ ############################################## python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-1242-:func:`re.split` now supports splitting on a pattern like ``r'\b'``, python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst:1243:``'^$'`` or ``(?=-)`` that matches an empty string. python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-1244-(Contributed by Serhiy Storchaka in :issue:`25054`.) ############################################## python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-2348- searching for all matches may also be changed in other cases. For example python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst:2349: in the string ``'a\n\n'``, the pattern ``r'(?m)^\s*?$'`` will not only python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-2350- match empty strings at positions 2 and 3, but also the string ``'\n'`` at python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-2351- positions 2--3. To match only blank lines, the pattern should be rewritten python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst:2352: as ``r'(?m)^[^\S\n]*$'``. python3.9-3.9.1~rc1/Doc/whatsnew/3.7.rst-2353- ############################################## python3.9-3.9.1~rc1/Doc/tutorial/inputoutput.rst-92-yet another way to substitute values into strings, using placeholders like python3.9-3.9.1~rc1/Doc/tutorial/inputoutput.rst:93:``$x`` and replacing them with values from a dictionary, but offers much less python3.9-3.9.1~rc1/Doc/tutorial/inputoutput.rst-94-control of the formatting. ############################################## python3.9-3.9.1~rc1/Doc/tutorial/stdlib2.rst-80-braces allows it to be followed by more alphanumeric letters with no intervening python3.9-3.9.1~rc1/Doc/tutorial/stdlib2.rst:81:spaces. Writing ``$$`` creates a single escaped ``$``:: python3.9-3.9.1~rc1/Doc/tutorial/stdlib2.rst-82- ############################################## python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-139-library/http.client,,:port,host:port python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv:140:library/http.cookies,,`,!#$%&'*+-.^_`|~: python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-141-library/imaplib,,:MM,"""DD-Mmm-YYYY HH:MM:SS" ############################################## python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-228-library/stdtypes,,::,>>> z = y[::-2] python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv:229:library/string,,`,"!""#$%&'()*+,-./:;<=>?@[\]^_`{|}~" python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-230-library/tarfile,,:bz2, ############################################## python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-266-reference/expressions,,:index,x[index:index] python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv:267:reference/lexical_analysis,,`,$ ? ` python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-268-reference/lexical_analysis,,:fileencoding,# vim:fileencoding=<encoding-name> ############################################## python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-317-whatsnew/3.2,,:prefix,zope-conf = ${custom:prefix}/etc/zope.conf python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv:318:library/re,,`,!#$%&'*+-.^_`|~: python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv:319:library/re,,`,!\#\$%\&'\*\+\-\.\^_`\|\~: python3.9-3.9.1~rc1/Doc/tools/susp-ignored.csv-320-library/tarfile,,:xz,'x:xz' ############################################## python3.9-3.9.1~rc1/Doc/distutils/apiref.rst-1201- Note that this is not a fully-fledged string interpolation function. A valid python3.9-3.9.1~rc1/Doc/distutils/apiref.rst:1202: ``$variable`` can consist only of upper and lower case letters, numbers and an python3.9-3.9.1~rc1/Doc/distutils/apiref.rst-1203- underscore. No { } or ( ) style quoting is available. ############################################## python3.9-3.9.1~rc1/Doc/library/configparser.rst-335- syntax, used for instance in ``zc.buildout``. Extended interpolation is python3.9-3.9.1~rc1/Doc/library/configparser.rst:336: using ``${section:option}`` to denote a value from a foreign section. python3.9-3.9.1~rc1/Doc/library/configparser.rst-337- Interpolation can span multiple levels. For convenience, if the ############################################## python3.9-3.9.1~rc1/Doc/library/email.utils.rst-62- python3.9-3.9.1~rc1/Doc/library/email.utils.rst:63:.. function:: parseaddr(address) python3.9-3.9.1~rc1/Doc/library/email.utils.rst-64- ############################################## python3.9-3.9.1~rc1/Doc/library/email.utils.rst-70- python3.9-3.9.1~rc1/Doc/library/email.utils.rst:71:.. function:: formataddr(pair, charset='utf-8') python3.9-3.9.1~rc1/Doc/library/email.utils.rst-72- ############################################## python3.9-3.9.1~rc1/Doc/library/email.utils.rst-88- python3.9-3.9.1~rc1/Doc/library/email.utils.rst:89: This method returns a list of 2-tuples of the form returned by ``parseaddr()``. python3.9-3.9.1~rc1/Doc/library/email.utils.rst-90- *fieldvalues* is a sequence of header field values as might be returned by ############################################## python3.9-3.9.1~rc1/Doc/library/asyncore.rst-350- self.create_socket() python3.9-3.9.1~rc1/Doc/library/asyncore.rst:351: self.set_reuse_addr() python3.9-3.9.1~rc1/Doc/library/asyncore.rst-352- self.bind((host, port)) ############################################## python3.9-3.9.1~rc1/Doc/library/http.cookiejar.rst-563- python3.9-3.9.1~rc1/Doc/library/http.cookiejar.rst:564: Ignore cookies in Set-Cookie: headers that have names starting with ``'$'``. python3.9-3.9.1~rc1/Doc/library/http.cookiejar.rst-565- ############################################## python3.9-3.9.1~rc1/Doc/library/tkinter.tix.rst-535- :meth:`tix_getbitmap` methods will search for image files. The standard bitmap python3.9-3.9.1~rc1/Doc/library/tkinter.tix.rst:536: directory is :file:`$TIX_LIBRARY/bitmaps`. The :meth:`tix_addbitmapdir` method python3.9-3.9.1~rc1/Doc/library/tkinter.tix.rst-537- adds *directory* into this list. By using this method, the image files of an ############################################## python3.9-3.9.1~rc1/Doc/library/socket.rst-837- python3.9-3.9.1~rc1/Doc/library/socket.rst:838:.. function:: gethostbyaddr(ip_address) python3.9-3.9.1~rc1/Doc/library/socket.rst-839- ############################################## python3.9-3.9.1~rc1/Doc/library/http.cookies.rst-25-The character set, :data:`string.ascii_letters`, :data:`string.digits` and python3.9-3.9.1~rc1/Doc/library/http.cookies.rst:26:``!#$%&'*+-.^_`|~:`` denote the set of valid characters allowed by this module python3.9-3.9.1~rc1/Doc/library/http.cookies.rst-27-in Cookie name (as :attr:`~Morsel.key`). ############################################## python3.9-3.9.1~rc1/Doc/library/logging.rst-771-``{attrname}`` as the placeholder in the format string. If you are using python3.9-3.9.1~rc1/Doc/library/logging.rst:772:$-formatting (:class:`string.Template`), use the form ``${attrname}``. In python3.9-3.9.1~rc1/Doc/library/logging.rst-773-both cases, of course, replace ``attrname`` with the actual attribute name ############################################## python3.9-3.9.1~rc1/Doc/library/logging.rst-1176- | | for the format string. One of ``'%'``, | python3.9-3.9.1~rc1/Doc/library/logging.rst:1177: | | ``'{'`` or ``'$'`` for :ref:`printf-style | python3.9-3.9.1~rc1/Doc/library/logging.rst-1178- | | <old-string-formatting>`, | ############################################## python3.9-3.9.1~rc1/Doc/library/crypt.rst-102- *salt* (either a random 2 or 16 character string, possibly prefixed with python3.9-3.9.1~rc1/Doc/library/crypt.rst:103: ``$digit$`` to indicate the method) which will be used to perturb the python3.9-3.9.1~rc1/Doc/library/crypt.rst-104- encryption algorithm. The characters in *salt* must be in the set python3.9-3.9.1~rc1/Doc/library/crypt.rst-105- ``[./a-zA-Z0-9]``, with the exception of Modular Crypt Format which python3.9-3.9.1~rc1/Doc/library/crypt.rst:106: prefixes a ``$digit$``. python3.9-3.9.1~rc1/Doc/library/crypt.rst-107- ############################################## python3.9-3.9.1~rc1/Doc/library/re.rst-427- optional and can be omitted. For example, python3.9-3.9.1~rc1/Doc/library/re.rst:428: ``(<)?(\w+@\w+(?:\.\w+)+)(?(1)>|$)`` is a poor email matching pattern, which python3.9-3.9.1~rc1/Doc/library/re.rst-429- will match with ``'<user@host.com>'`` as well as ``'user@host.com'``, but ############################################## python3.9-3.9.1~rc1/Doc/library/re.rst-435-resulting RE will match the second character. For example, ``\$`` matches the python3.9-3.9.1~rc1/Doc/library/re.rst:436:character ``'$'``. python3.9-3.9.1~rc1/Doc/library/re.rst-437- ############################################## python3.9-3.9.1~rc1/Doc/library/re.rst-706- string and at the beginning of each line (immediately following each newline); python3.9-3.9.1~rc1/Doc/library/re.rst:707: and the pattern character ``'$'`` matches at the end of the string and at the python3.9-3.9.1~rc1/Doc/library/re.rst-708- end of each line (immediately preceding each newline). By default, ``'^'`` python3.9-3.9.1~rc1/Doc/library/re.rst:709: matches only at the beginning of the string, and ``'$'`` only at the end of the python3.9-3.9.1~rc1/Doc/library/re.rst-710- string and immediately before the newline (if any) at the end of the string. ############################################## python3.9-3.9.1~rc1/Doc/library/string.rst-58- String of ASCII characters which are considered punctuation characters python3.9-3.9.1~rc1/Doc/library/string.rst:59: in the ``C`` locale: ``!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~``. python3.9-3.9.1~rc1/Doc/library/string.rst-60- ############################################## python3.9-3.9.1~rc1/Doc/library/string.rst-700- python3.9-3.9.1~rc1/Doc/library/string.rst:701:* ``$$`` is an escape; it is replaced with a single ``$``. python3.9-3.9.1~rc1/Doc/library/string.rst-702- python3.9-3.9.1~rc1/Doc/library/string.rst:703:* ``$identifier`` names a substitution placeholder matching a mapping key of python3.9-3.9.1~rc1/Doc/library/string.rst-704- ``"identifier"``. By default, ``"identifier"`` is restricted to any ############################################## python3.9-3.9.1~rc1/Doc/library/string.rst-709- python3.9-3.9.1~rc1/Doc/library/string.rst:710:* ``${identifier}`` is equivalent to ``$identifier``. It is required when python3.9-3.9.1~rc1/Doc/library/string.rst-711- valid identifier characters follow the placeholder but are not part of the python3.9-3.9.1~rc1/Doc/library/string.rst:712: placeholder, such as ``"${noun}ification"``. python3.9-3.9.1~rc1/Doc/library/string.rst-713- ############################################## python3.9-3.9.1~rc1/Doc/library/string.rst-823- python3.9-3.9.1~rc1/Doc/library/string.rst:824:* *escaped* -- This group matches the escape sequence, e.g. ``$$``, in the python3.9-3.9.1~rc1/Doc/library/string.rst-825- default pattern. ############################################## python3.9-3.9.1~rc1/Doc/library/mailcap.rst-65- The information is derived from all of the mailcap files found on the system. python3.9-3.9.1~rc1/Doc/library/mailcap.rst:66: Settings in the user's mailcap file :file:`$HOME/.mailcap` will override python3.9-3.9.1~rc1/Doc/library/mailcap.rst-67- settings in the system mailcap files :file:`/etc/mailcap`, ############################################## python3.9-3.9.1~rc1/Doc/library/os.rst-609- single: gethostname() (in module socket) python3.9-3.9.1~rc1/Doc/library/os.rst:610: single: gethostbyaddr() (in module socket) python3.9-3.9.1~rc1/Doc/library/os.rst-611- ############################################## python3.9-3.9.1~rc1/Doc/library/os.rst-628- :func:`socket.gethostname` or even python3.9-3.9.1~rc1/Doc/library/os.rst:629: ``socket.gethostbyaddr(socket.gethostname())``. python3.9-3.9.1~rc1/Doc/library/os.rst-630- ############################################## python3.9-3.9.1~rc1/Doc/library/os.path.rst-196- Return the argument with environment variables expanded. Substrings of the form python3.9-3.9.1~rc1/Doc/library/os.path.rst:197: ``$name`` or ``${name}`` are replaced by the value of environment variable python3.9-3.9.1~rc1/Doc/library/os.path.rst-198- *name*. Malformed variable names and references to non-existing variables are ############################################## python3.9-3.9.1~rc1/Doc/library/os.path.rst-200- python3.9-3.9.1~rc1/Doc/library/os.path.rst:201: On Windows, ``%name%`` expansions are supported in addition to ``$name`` and python3.9-3.9.1~rc1/Doc/library/os.path.rst:202: ``${name}``. python3.9-3.9.1~rc1/Doc/library/os.path.rst-203- ############################################## python3.9-3.9.1~rc1/Doc/using/unix.rst-95-These are subject to difference depending on local installation conventions; python3.9-3.9.1~rc1/Doc/using/unix.rst:96::envvar:`prefix` (``${prefix}``) and :envvar:`exec_prefix` (``${exec_prefix}``) python3.9-3.9.1~rc1/Doc/using/unix.rst-97-are installation-dependent and should be interpreted as for GNU software; they ############################################## python3.9-3.9.1~rc1/Doc/faq/programming.rst-852-unwanted side effects. For example, someone could pass python3.9-3.9.1~rc1/Doc/faq/programming.rst:853:``__import__('os').system("rm -rf $HOME")`` which would erase your home python3.9-3.9.1~rc1/Doc/faq/programming.rst-854-directory. ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-23-- socket.gethostbyname(hostname) --> host IP address (string: 'dd.dd.dd.dd') python3.9-3.9.1~rc1/Modules/socketmodule.c:24:- socket.gethostbyaddr(IP address) --> (hostname, [alias, ...], [IP addr, ...]) python3.9-3.9.1~rc1/Modules/socketmodule.c-25-- socket.gethostname() --> host name (string: 'spam' or 'spam.domain.com') ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-294- python3.9-3.9.1~rc1/Modules/socketmodule.c:295:/* Headers needed for inet_ntoa() and inet_addr() */ python3.9-3.9.1~rc1/Modules/socketmodule.c-296-# include <arpa/inet.h> ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1074-static int python3.9-3.9.1~rc1/Modules/socketmodule.c:1075:setipaddr(const char *name, struct sockaddr *addr_ret, size_t addr_ret_size, int af) python3.9-3.9.1~rc1/Modules/socketmodule.c-1076-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1126- } python3.9-3.9.1~rc1/Modules/socketmodule.c:1127: /* special-case broadcast - inet_addr() below can return INADDR_NONE for python3.9-3.9.1~rc1/Modules/socketmodule.c-1128- * this */ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1181- memset(sin, 0, sizeof(*sin)); python3.9-3.9.1~rc1/Modules/socketmodule.c:1182: if ((sin->sin_addr.s_addr = inet_addr(name)) != INADDR_NONE) { python3.9-3.9.1~rc1/Modules/socketmodule.c-1183- sin->sin_family = AF_INET; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1206- Py_END_ALLOW_THREADS python3.9-3.9.1~rc1/Modules/socketmodule.c:1207: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.1~rc1/Modules/socketmodule.c-1208- if (error) { ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1232-static PyObject * python3.9-3.9.1~rc1/Modules/socketmodule.c:1233:make_ipv4_addr(const struct sockaddr_in *addr) python3.9-3.9.1~rc1/Modules/socketmodule.c-1234-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1246-static PyObject * python3.9-3.9.1~rc1/Modules/socketmodule.c:1247:make_ipv6_addr(const struct sockaddr_in6 *addr) python3.9-3.9.1~rc1/Modules/socketmodule.c-1248-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1263-static int python3.9-3.9.1~rc1/Modules/socketmodule.c:1264:setbdaddr(const char *name, bdaddr_t *bdaddr) python3.9-3.9.1~rc1/Modules/socketmodule.c-1265-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1301-static PyObject * python3.9-3.9.1~rc1/Modules/socketmodule.c:1302:makebdaddr(bdaddr_t *bdaddr) python3.9-3.9.1~rc1/Modules/socketmodule.c-1303-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1334-static PyObject * python3.9-3.9.1~rc1/Modules/socketmodule.c:1335:makesockaddr(SOCKET_T sockfd, struct sockaddr *addr, size_t addrlen, int proto) python3.9-3.9.1~rc1/Modules/socketmodule.c-1336-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1346- const struct sockaddr_in *a = (const struct sockaddr_in *)addr; python3.9-3.9.1~rc1/Modules/socketmodule.c:1347: PyObject *addrobj = make_ipv4_addr(a); python3.9-3.9.1~rc1/Modules/socketmodule.c-1348- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1401- const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)addr; python3.9-3.9.1~rc1/Modules/socketmodule.c:1402: PyObject *addrobj = make_ipv6_addr(a); python3.9-3.9.1~rc1/Modules/socketmodule.c-1403- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1423- struct sockaddr_l2 *a = (struct sockaddr_l2 *) addr; python3.9-3.9.1~rc1/Modules/socketmodule.c:1424: PyObject *addrobj = makebdaddr(&_BT_L2_MEMB(a, bdaddr)); python3.9-3.9.1~rc1/Modules/socketmodule.c-1425- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1439- struct sockaddr_rc *a = (struct sockaddr_rc *) addr; python3.9-3.9.1~rc1/Modules/socketmodule.c:1440: PyObject *addrobj = makebdaddr(&_BT_RC_MEMB(a, bdaddr)); python3.9-3.9.1~rc1/Modules/socketmodule.c-1441- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1455-#if defined(__NetBSD__) || defined(__DragonFly__) python3.9-3.9.1~rc1/Modules/socketmodule.c:1456: return makebdaddr(&_BT_HCI_MEMB(a, bdaddr)); python3.9-3.9.1~rc1/Modules/socketmodule.c-1457-#else /* __NetBSD__ || __DragonFly__ */ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1467- struct sockaddr_sco *a = (struct sockaddr_sco *) addr; python3.9-3.9.1~rc1/Modules/socketmodule.c:1468: return makebdaddr(&_BT_SCO_MEMB(a, bdaddr)); python3.9-3.9.1~rc1/Modules/socketmodule.c-1469- } ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1854- struct sockaddr_in* addr = &addrbuf->in; python3.9-3.9.1~rc1/Modules/socketmodule.c:1855: result = setipaddr(host.buf, (struct sockaddr *)addr, python3.9-3.9.1~rc1/Modules/socketmodule.c-1856- sizeof(*addr), AF_INET); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1899- struct sockaddr_in6* addr = &addrbuf->in6; python3.9-3.9.1~rc1/Modules/socketmodule.c:1900: result = setipaddr(host.buf, (struct sockaddr *)addr, python3.9-3.9.1~rc1/Modules/socketmodule.c-1901- sizeof(*addr), AF_INET6); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1943- } python3.9-3.9.1~rc1/Modules/socketmodule.c:1944: if (setbdaddr(straddr, &_BT_L2_MEMB(addr, bdaddr)) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-1945- return 0; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1961- } python3.9-3.9.1~rc1/Modules/socketmodule.c:1962: if (setbdaddr(straddr, &_BT_RC_MEMB(addr, bdaddr)) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-1963- return 0; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-1980- straddr = PyBytes_AS_STRING(args); python3.9-3.9.1~rc1/Modules/socketmodule.c:1981: if (setbdaddr(straddr, &_BT_HCI_MEMB(addr, bdaddr)) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-1982- return 0; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-2006- straddr = PyBytes_AS_STRING(args); python3.9-3.9.1~rc1/Modules/socketmodule.c:2007: if (setbdaddr(straddr, &_BT_SCO_MEMB(addr, bdaddr)) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-2008- return 0; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-2793- python3.9-3.9.1~rc1/Modules/socketmodule.c:2794: addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), python3.9-3.9.1~rc1/Modules/socketmodule.c-2795- addrlen, s->sock_proto); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-3402- return s->errorhandler(); python3.9-3.9.1~rc1/Modules/socketmodule.c:3403: return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.1~rc1/Modules/socketmodule.c-3404- s->sock_proto); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-3431- return s->errorhandler(); python3.9-3.9.1~rc1/Modules/socketmodule.c:3432: return makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.1~rc1/Modules/socketmodule.c-3433- s->sock_proto); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-3709- python3.9-3.9.1~rc1/Modules/socketmodule.c:3710: *addr = makesockaddr(s->sock_fd, SAS2SA(&addrbuf), addrlen, python3.9-3.9.1~rc1/Modules/socketmodule.c-3711- s->sock_proto); ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-3948- (int)msg.msg_flags, python3.9-3.9.1~rc1/Modules/socketmodule.c:3949: makesockaddr(s->sock_fd, SAS2SA(&addrbuf), python3.9-3.9.1~rc1/Modules/socketmodule.c-3950- ((msg.msg_namelen > addrbuflen) ? ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5538- } python3.9-3.9.1~rc1/Modules/socketmodule.c:5539: if (setipaddr(name, (struct sockaddr *)&addrbuf, sizeof(addrbuf), AF_INET) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-5540- goto finally; python3.9-3.9.1~rc1/Modules/socketmodule.c:5541: ret = make_ipv4_addr(&addrbuf); python3.9-3.9.1~rc1/Modules/socketmodule.c-5542-finally: ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5556-#ifdef MS_WINDOWS python3.9-3.9.1~rc1/Modules/socketmodule.c:5557: /* Issue #26227: gethostbyaddr() returns a string encoded python3.9-3.9.1~rc1/Modules/socketmodule.c-5558- * to the ANSI code page */ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5642- memcpy(&sin.sin_addr, *pch, sizeof(sin.sin_addr)); python3.9-3.9.1~rc1/Modules/socketmodule.c:5643: tmp = make_ipv4_addr(&sin); python3.9-3.9.1~rc1/Modules/socketmodule.c-5644- ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5659- memcpy(&sin6.sin6_addr, *pch, sizeof(sin6.sin6_addr)); python3.9-3.9.1~rc1/Modules/socketmodule.c:5660: tmp = make_ipv6_addr(&sin6); python3.9-3.9.1~rc1/Modules/socketmodule.c-5661- ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5725- } python3.9-3.9.1~rc1/Modules/socketmodule.c:5726: if (setipaddr(name, SAS2SA(&addr), sizeof(addr), AF_INET) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-5727- goto finally; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5769- python3.9-3.9.1~rc1/Modules/socketmodule.c:5770:/* Python interface to gethostbyaddr(IP). */ python3.9-3.9.1~rc1/Modules/socketmodule.c-5771- ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5773-static PyObject * python3.9-3.9.1~rc1/Modules/socketmodule.c:5774:socket_gethostbyaddr(PyObject *self, PyObject *args) python3.9-3.9.1~rc1/Modules/socketmodule.c-5775-{ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5807- af = AF_UNSPEC; python3.9-3.9.1~rc1/Modules/socketmodule.c:5808: if (setipaddr(ip_num, sa, sizeof(addr), af) < 0) python3.9-3.9.1~rc1/Modules/socketmodule.c-5809- goto finally; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5846- SUPPRESS_DEPRECATED_CALL python3.9-3.9.1~rc1/Modules/socketmodule.c:5847: h = gethostbyaddr(ap, al, af); python3.9-3.9.1~rc1/Modules/socketmodule.c-5848-#endif /* HAVE_GETHOSTBYNAME_R */ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-5859-PyDoc_STRVAR(gethostbyaddr_doc, python3.9-3.9.1~rc1/Modules/socketmodule.c:5860:"gethostbyaddr(host) -> (name, aliaslist, addresslist)\n\ python3.9-3.9.1~rc1/Modules/socketmodule.c-5861-\n\ ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-6297-#endif python3.9-3.9.1~rc1/Modules/socketmodule.c:6298: /* Have to use inet_addr() instead */ python3.9-3.9.1~rc1/Modules/socketmodule.c-6299- unsigned int packed_addr; ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-6334- SUPPRESS_DEPRECATED_CALL python3.9-3.9.1~rc1/Modules/socketmodule.c:6335: packed_addr = inet_addr(ip_addr); python3.9-3.9.1~rc1/Modules/socketmodule.c-6336- ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-6574- Py_END_ALLOW_THREADS python3.9-3.9.1~rc1/Modules/socketmodule.c:6575: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.1~rc1/Modules/socketmodule.c-6576- if (error) { ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-6586- PyObject *addr = python3.9-3.9.1~rc1/Modules/socketmodule.c:6587: makesockaddr(-1, res->ai_addr, res->ai_addrlen, protocol); python3.9-3.9.1~rc1/Modules/socketmodule.c-6588- if (addr == NULL) ############################################## python3.9-3.9.1~rc1/Modules/socketmodule.c-6670- Py_END_ALLOW_THREADS python3.9-3.9.1~rc1/Modules/socketmodule.c:6671: RELEASE_GETADDRINFO_LOCK /* see comment in setipaddr() */ python3.9-3.9.1~rc1/Modules/socketmodule.c-6672- if (error) { ############################################## python3.9-3.9.1~rc1/Modules/getnameinfo.c-180-#ifdef ENABLE_IPV6 python3.9-3.9.1~rc1/Modules/getnameinfo.c:181: hp = getipnodebyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af, &h_error); python3.9-3.9.1~rc1/Modules/getnameinfo.c-182-#else python3.9-3.9.1~rc1/Modules/getnameinfo.c:183: hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af); python3.9-3.9.1~rc1/Modules/getnameinfo.c-184- h_error = h_errno; ############################################## python3.9-3.9.1~rc1/Modules/_decimal/tests/runall-memorydebugger.sh-44-{ python3.9-3.9.1~rc1/Modules/_decimal/tests/runall-memorydebugger.sh:45: len=`echo $@ | wc -c` python3.9-3.9.1~rc1/Modules/_decimal/tests/runall-memorydebugger.sh:46: margin="#%"`expr \( 74 - $len \) / 2`"s" python3.9-3.9.1~rc1/Modules/_decimal/tests/runall-memorydebugger.sh-47- ############################################## python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-106-#define MPD(v) (&((PyDecObject *)v)->dec) python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c:107:#define SdFlagAddr(v) (((PyDecSignalDictObject *)v)->flags) python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-108-#define SdFlags(v) (*((PyDecSignalDictObject *)v)->flags) ############################################## python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-543-{ python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c:544: SdFlagAddr(self) = NULL; python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-545- return 0; ############################################## python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-1217- python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c:1218: SdFlagAddr(self->traps) = &ctx->traps; python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c:1219: SdFlagAddr(self->flags) = &ctx->status; python3.9-3.9.1~rc1/Modules/_decimal/_decimal.c-1220- ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/README.txt-32- vccompat.h -> snprintf <==> sprintf_s and similar things. python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/README.txt:33: vcdiv64.asm -> Double word division used in typearith.h. VS 2008 does python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/README.txt:34: not allow inline asm for x64. Also, it does not provide python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/README.txt-35- an intrinsic for double word division. ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-511-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h:512:/* END PPRO GCC ASM */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-513-#elif defined(MASM) ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-520- python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h:521: __asm { python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-522- mov eax, dinvmod ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-549-{ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h:550: __asm { python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-551- mov ecx, dmod ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-588-{ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h:589: __asm { python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-590- mov ecx, dmod ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-625-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h:626:#endif /* PPRO MASM (_MSC_VER) */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/umodarith.h-627- ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h-51-#elif defined(PPRO) python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h:52:/* PentiumPro (or later) gcc inline asm */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h-53- #define MULMOD(a, b) ppro_mulmod(a, b, &dmod, dinvmod) ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h-68- python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h:69:/* PentiumPro (or later) gcc inline asm */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/constants.h-70-extern const float MPD_TWO63; ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h-144-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h:145:/* END ASM */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h-146- ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h-181-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h:182:/* END MASM (_MSC_VER) */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/bits.h-183-#else ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-236-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:237:/* END GCC ASM */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-238-#elif defined(MASM) ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-250- python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:251:/* END MASM (_MSC_VER) */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-252-#else ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-493-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:494:/* END GCC ASM */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-495-#elif defined(MASM) ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-500- python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:501: __asm { python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-502- mov eax, a ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-517- python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:518: __asm { python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-519- mov eax, lo ############################################## python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-528-} python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h:529:/* END MASM (_MSC_VER) */ python3.9-3.9.1~rc1/Modules/_decimal/libmpdec/typearith.h-530-#else ############################################## python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-5-PyDoc_STRVAR(_tkinter_tkapp_eval__doc__, python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h:6:"eval($self, script, /)\n" python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-7-"--\n" ############################################## python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-617-PyDoc_STRVAR(_tkinter_tkapp_interpaddr__doc__, python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h:618:"interpaddr($self, /)\n" python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-619-"--\n" ############################################## python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-628-static PyObject * python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h:629:_tkinter_tkapp_interpaddr(TkappObject *self, PyObject *Py_UNUSED(ignored)) python3.9-3.9.1~rc1/Modules/clinic/_tkinter.c.h-630-{ ############################################## python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h-1730-PyDoc_STRVAR(os_system__doc__, python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h:1731:"system($module, /, command)\n" python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h-1732-"--\n" ############################################## python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h-1769-PyDoc_STRVAR(os_system__doc__, python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h:1770:"system($module, /, command)\n" python3.9-3.9.1~rc1/Modules/clinic/posixmodule.c.h-1771-"--\n" ############################################## python3.9-3.9.1~rc1/Modules/getaddrinfo.c-134- int); python3.9-3.9.1~rc1/Modules/getaddrinfo.c:135:static int get_addr(const char *, int, struct addrinfo **, python3.9-3.9.1~rc1/Modules/getaddrinfo.c-136- struct addrinfo *, int); ############################################## python3.9-3.9.1~rc1/Modules/getaddrinfo.c-379- * hostname == NULL. python3.9-3.9.1~rc1/Modules/getaddrinfo.c:380: * passive socket -> anyaddr (0.0.0.0 or ::) python3.9-3.9.1~rc1/Modules/getaddrinfo.c-381- * non-passive socket -> localhost (127.0.0.1 or ::1) ############################################## python3.9-3.9.1~rc1/Modules/getaddrinfo.c-465- /* hostname as alphabetical name */ python3.9-3.9.1~rc1/Modules/getaddrinfo.c:466: error = get_addr(hostname, pai->ai_family, &top, pai, port); python3.9-3.9.1~rc1/Modules/getaddrinfo.c-467- if (error == 0) { ############################################## python3.9-3.9.1~rc1/Modules/getaddrinfo.c-500-#ifdef ENABLE_IPV6 python3.9-3.9.1~rc1/Modules/getaddrinfo.c:501: hp = getipnodebyaddr(addr, gai_afd->a_addrlen, gai_afd->a_af, &h_error); python3.9-3.9.1~rc1/Modules/getaddrinfo.c-502-#else python3.9-3.9.1~rc1/Modules/getaddrinfo.c:503: hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET); python3.9-3.9.1~rc1/Modules/getaddrinfo.c-504-#endif ############################################## python3.9-3.9.1~rc1/Modules/getaddrinfo.c-529-static int python3.9-3.9.1~rc1/Modules/getaddrinfo.c:530:get_addr(hostname, af, res, pai, port0) python3.9-3.9.1~rc1/Modules/getaddrinfo.c-531- const char *hostname; ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-71- python3.9-3.9.1~rc1/Modules/ld_so_aix.in:72:makexp=`dirname $0`/makexp_aix python3.9-3.9.1~rc1/Modules/ld_so_aix.in-73-test -x "${makexp}" || makexp="@abs_srcdir@/makexp_aix" ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-76-CC=$1; shift python3.9-3.9.1~rc1/Modules/ld_so_aix.in:77:whichcc=`which $CC` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-78- ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-103- -e* | -Wl,-e*) python3.9-3.9.1~rc1/Modules/ld_so_aix.in:104: entry=`echo $1 | sed -e "s/-Wl,//" -e "s/-e//"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-105- ;; ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-113- -o*) python3.9-3.9.1~rc1/Modules/ld_so_aix.in:114: objfile=`echo $1 | sed "s/-o//"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-115- ;; python3.9-3.9.1~rc1/Modules/ld_so_aix.in-116- -bI:* | -Wl,-bI:*) python3.9-3.9.1~rc1/Modules/ld_so_aix.in:117: impfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bI://"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-118- ;; python3.9-3.9.1~rc1/Modules/ld_so_aix.in-119- -bE:* | -Wl,-bE:*) python3.9-3.9.1~rc1/Modules/ld_so_aix.in:120: expfile=`echo $1 | sed -e "s/-Wl,//" -e "s/-bE://"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-121- ;; ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-151- python3.9-3.9.1~rc1/Modules/ld_so_aix.in:152:filename=`basename $objfile | sed "s/\.[^.]*$//"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-153- ############################################## python3.9-3.9.1~rc1/Modules/ld_so_aix.in-161-if test -z "$entry"; then python3.9-3.9.1~rc1/Modules/ld_so_aix.in:162: entry=PyInit_`echo $filename | sed "s/module.*//"` python3.9-3.9.1~rc1/Modules/ld_so_aix.in-163-fi ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-96-typedef struct ffi_aix_trampoline_struct { python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h:97: void* code_pointer; /* Pointer to ffi_closure_ASM */ python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/include/ppc-ffitarget.h-98- void* toc; /* TOC */ ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-375- python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:376: /* We don't have to do anything in asm for the return. */ python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-377- flags = FFI_TYPE_VOID; ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-649- python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c:650: /* We don't have to do anything in asm for the return. */ python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-ffi64.c-651- ret = FFI_TYPE_VOID; ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-33- python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-darwin.S:34:#define LIBFFI_ASM python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/x86/x86-darwin.S-35-#include <fficonfig.h> ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-810- contain parameters to be passed into the stack frame and setting up space python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:811: for a return value, ffi_closure_ASM invokes the following helper function python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-812- to do most of the work. */ ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1017- python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c:1018: /* Tell ffi_closure_ASM to perform return type promotions. */ python3.9-3.9.1~rc1/Modules/_ctypes/libffi_osx/powerpc/ppc-ffi_darwin.c-1019- return cif->rtype->type; ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c-56-extern int dlclose(void * handle) __attribute__((weak_import)); python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c:57:extern int dladdr(const void *, Dl_info *) __attribute__((weak_import)); python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c-58-#endif /* MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 */ ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c-242- python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c:243:static int darwin_dladdr(const void *handle, Dl_info *info) { python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn_simple.c-244- return 0; ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h-41-/* python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h:42: * Structure filled in by dladdr(). python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h-43- */ ############################################## python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h-65-extern int dlclose(void * handle); python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h:66:extern int dladdr(const void *, Dl_info *); python3.9-3.9.1~rc1/Modules/_ctypes/darwin/dlfcn.h-67-#endif ############################################## python3.9-3.9.1~rc1/Modules/makesetup-72-'') case $0 in python3.9-3.9.1~rc1/Modules/makesetup:73: */*) libdir=`echo $0 | sed 's,/[^/]*$,,'`;; python3.9-3.9.1~rc1/Modules/makesetup-74- *) libdir=.;; ############################################## python3.9-3.9.1~rc1/Modules/makesetup-130- read extraline python3.9-3.9.1~rc1/Modules/makesetup:131: line=`echo $line| sed s/.$//`$extraline python3.9-3.9.1~rc1/Modules/makesetup-132- done ############################################## python3.9-3.9.1~rc1/Modules/makesetup-177- *.def) libs="$libs $arg";; python3.9-3.9.1~rc1/Modules/makesetup:178: *.o) srcs="$srcs `basename $arg .o`.c";; python3.9-3.9.1~rc1/Modules/makesetup-179- *.[cC]) srcs="$srcs $arg";; ############################################## python3.9-3.9.1~rc1/Modules/makesetup-215- case $src in python3.9-3.9.1~rc1/Modules/makesetup:216: *.c) obj=`basename $src .c`.o; cc='$(CC)';; python3.9-3.9.1~rc1/Modules/makesetup:217: *.cc) obj=`basename $src .cc`.o; cc='$(CXX)';; python3.9-3.9.1~rc1/Modules/makesetup:218: *.c++) obj=`basename $src .c++`.o; cc='$(CXX)';; python3.9-3.9.1~rc1/Modules/makesetup:219: *.C) obj=`basename $src .C`.o; cc='$(CXX)';; python3.9-3.9.1~rc1/Modules/makesetup:220: *.cxx) obj=`basename $src .cxx`.o; cc='$(CXX)';; python3.9-3.9.1~rc1/Modules/makesetup:221: *.cpp) obj=`basename $src .cpp`.o; cc='$(CXX)';; python3.9-3.9.1~rc1/Modules/makesetup:222: *.m) obj=`basename $src .m`.o; cc='$(CC)';; # Obj-C python3.9-3.9.1~rc1/Modules/makesetup-223- *) continue;; ############################################## python3.9-3.9.1~rc1/Modules/overlapped.c-661-static PyObject * python3.9-3.9.1~rc1/Modules/overlapped.c:662:make_ipv4_addr(const struct sockaddr_in *addr) python3.9-3.9.1~rc1/Modules/overlapped.c-663-{ ############################################## python3.9-3.9.1~rc1/Modules/overlapped.c-674-static PyObject * python3.9-3.9.1~rc1/Modules/overlapped.c:675:make_ipv6_addr(const struct sockaddr_in6 *addr) python3.9-3.9.1~rc1/Modules/overlapped.c-676-{ ############################################## python3.9-3.9.1~rc1/Modules/overlapped.c-687-{ python3.9-3.9.1~rc1/Modules/overlapped.c:688: /* The function is adopted from mocketmodule.c makesockaddr()*/ python3.9-3.9.1~rc1/Modules/overlapped.c-689- ############################################## python3.9-3.9.1~rc1/Modules/overlapped.c-692- const struct sockaddr_in *a = (const struct sockaddr_in *)Address; python3.9-3.9.1~rc1/Modules/overlapped.c:693: PyObject *addrobj = make_ipv4_addr(a); python3.9-3.9.1~rc1/Modules/overlapped.c-694- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/Modules/overlapped.c-702- const struct sockaddr_in6 *a = (const struct sockaddr_in6 *)Address; python3.9-3.9.1~rc1/Modules/overlapped.c:703: PyObject *addrobj = make_ipv6_addr(a); python3.9-3.9.1~rc1/Modules/overlapped.c-704- PyObject *ret = NULL; ############################################## python3.9-3.9.1~rc1/PCbuild/tcl.vcxproj-55- <TclOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TclOpts> python3.9-3.9.1~rc1/PCbuild/tcl.vcxproj:56: <TclDirs>BUILDDIRTOP="$(BuildDirTop)" INSTALLDIR="$(OutDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TclDirs> python3.9-3.9.1~rc1/PCbuild/tcl.vcxproj-57- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags> ############################################## python3.9-3.9.1~rc1/PCbuild/sqlite3.vcxproj-90- <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> python3.9-3.9.1~rc1/PCbuild/sqlite3.vcxproj:91: <_SqliteVersion>$([System.Text.RegularExpressions.Regex]::Match(`$(sqlite3Dir)`, `((\d+)\.(\d+)\.(\d+)\.(\d+))\\?$`).Groups)</_SqliteVersion> python3.9-3.9.1~rc1/PCbuild/sqlite3.vcxproj-92- <SqliteVersion>$(_SqliteVersion.Split(`;`)[1])</SqliteVersion> ############################################## python3.9-3.9.1~rc1/PCbuild/python.props-56- <ExternalsDir>$(EXTERNALS_DIR)</ExternalsDir> python3.9-3.9.1~rc1/PCbuild/python.props:57: <ExternalsDir Condition="$(ExternalsDir) == ''">$([System.IO.Path]::GetFullPath(`$(PySourcePath)externals`))</ExternalsDir> python3.9-3.9.1~rc1/PCbuild/python.props-58- <ExternalsDir Condition="!HasTrailingSlash($(ExternalsDir))">$(ExternalsDir)\</ExternalsDir> ############################################## python3.9-3.9.1~rc1/PCbuild/python.props-132- --> python3.9-3.9.1~rc1/PCbuild/python.props:133: <_PatchLevelContent>$([System.IO.File]::ReadAllText(`$(PySourcePath)Include\patchlevel.h`))</_PatchLevelContent> python3.9-3.9.1~rc1/PCbuild/python.props-134- <MajorVersionNumber>$([System.Text.RegularExpressions.Regex]::Match($(_PatchLevelContent), `define\s+PY_MAJOR_VERSION\s+(\d+)`).Groups[1].Value)</MajorVersionNumber> ############################################## python3.9-3.9.1~rc1/PCbuild/prepare_libffi.bat-84-%SH% --login -lc "cygcheck -dc cygwin" python3.9-3.9.1~rc1/PCbuild/prepare_libffi.bat:85:set GET_MSVCC=%SH% -lc "cd $OLDPWD; export MSVCC=`/usr/bin/find $PWD -name msvcc.sh`; echo ${MSVCC};" python3.9-3.9.1~rc1/PCbuild/prepare_libffi.bat-86-FOR /F "usebackq delims==" %%i IN (`%GET_MSVCC%`) do @set MSVCC=%%i ############################################## python3.9-3.9.1~rc1/PCbuild/prepare_libffi.bat-173- echo "Running tests..." python3.9-3.9.1~rc1/PCbuild/prepare_libffi.bat:174: %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.9-3.9.1~rc1/PCbuild/prepare_libffi.bat-175-) else ( ############################################## python3.9-3.9.1~rc1/PCbuild/openssl.vcxproj-69-cd /D "$(IntDir.TrimEnd('\'))" python3.9-3.9.1~rc1/PCbuild/openssl.vcxproj:70:$(Perl) "$(opensslDir)\configure" $(OpenSSLPlatform) no-asm python3.9-3.9.1~rc1/PCbuild/openssl.vcxproj-71-nmake ############################################## python3.9-3.9.1~rc1/PCbuild/tk.vcxproj-56- <TkOpts Condition="$(Configuration) == 'Debug'">symbols,msvcrt</TkOpts> python3.9-3.9.1~rc1/PCbuild/tk.vcxproj:57: <TkDirs>BUILDDIRTOP="$(BuildDirTop)" TCLDIR="$(tclDir.TrimEnd(`\`))" INSTALLDIR="$(OutDir.TrimEnd(`\`))"</TkDirs> python3.9-3.9.1~rc1/PCbuild/tk.vcxproj-58- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUGFLAGS="-wd4456 -wd4457 -wd4458 -wd4459 -wd4996"</DebugFlags> ############################################## python3.9-3.9.1~rc1/PCbuild/_freeze_importlib.vcxproj-139- DestinationFiles="%(None.OutFile)" python3.9-3.9.1~rc1/PCbuild/_freeze_importlib.vcxproj:140: Condition="!Exists(%(None.OutFile)) or (Exists(%(None.IntFile)) and '$([System.IO.File]::ReadAllText(%(None.OutFile)).Replace(`
`, `
`))' != '$([System.IO.File]::ReadAllText(%(None.IntFile)).Replace(`
`, `
`))')"> python3.9-3.9.1~rc1/PCbuild/_freeze_importlib.vcxproj-141- <Output TaskParameter="CopiedFiles" ItemName="_Updated" /> ############################################## python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj-145- <_Lines Include="@(_DefLines)"> python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj:146: <New>$([System.Text.RegularExpressions.Regex]::Replace($([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern1)`, `$(_Sub1)`)), `$(_Pattern2)`, `$(_Sub2)`))</New> python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj-147- </_Lines> ############################################## python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj-172- <_Lines Include="EXPORTS" /> python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj:173: <_Symbols Include="@(_DefLines)" Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(`%(Identity)`, `$(_Pattern)`))"> python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj:174: <Symbol>$([System.Text.RegularExpressions.Regex]::Replace(`%(Identity)`, `$(_Pattern)`, `$(_Sub)`))</Symbol> python3.9-3.9.1~rc1/PCbuild/python3dll.vcxproj-175- </_Symbols> ############################################## python3.9-3.9.1~rc1/PCbuild/tix.vcxproj-55- <PropertyGroup> python3.9-3.9.1~rc1/PCbuild/tix.vcxproj:56: <TixDirs>BUILDDIRTOP="$(BuildDirTop)" TCL_DIR="$(tclDir.TrimEnd(`\`))" TK_DIR="$(tkDir.TrimEnd(`\`))" INSTALL_DIR="$(OutDir.TrimEnd(`\`))"</TixDirs> python3.9-3.9.1~rc1/PCbuild/tix.vcxproj-57- <DebugFlags Condition="'$(Configuration)' == 'Debug'">DEBUG=1 NODEBUG=0 TCL_DBGX=g TK_DBGX=g</DebugFlags> ############################################## python3.9-3.9.1~rc1/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \ python3.9-3.9.1~rc1/configure:46: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.1~rc1/configure-47- as_echo='print -r --' python3.9-3.9.1~rc1/configure-48- as_echo_n='print -rn --' python3.9-3.9.1~rc1/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.1~rc1/configure-50- as_echo='printf %s\n' ############################################## python3.9-3.9.1~rc1/configure-52-else python3.9-3.9.1~rc1/configure:53: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then python3.9-3.9.1~rc1/configure-54- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## python3.9-3.9.1~rc1/configure-62- expr "X$arg" : "X\\(.*\\)$as_nl"; python3.9-3.9.1~rc1/configure:63: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; python3.9-3.9.1~rc1/configure-64- esac; ############################################## python3.9-3.9.1~rc1/configure-199- eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && python3.9-3.9.1~rc1/configure:200: test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 python3.9-3.9.1~rc1/configure-201-test \$(( 1 + 1 )) = 2 || exit 1" ############################################## python3.9-3.9.1~rc1/configure-327- case $as_dir in #( python3.9-3.9.1~rc1/configure:328: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( python3.9-3.9.1~rc1/configure-329- *) as_qdir=$as_dir;; ############################################## python3.9-3.9.1~rc1/configure-400- { python3.9-3.9.1~rc1/configure:401: as_val=`expr "$@" || test $? -eq 1` python3.9-3.9.1~rc1/configure-402- } ############################################## python3.9-3.9.1~rc1/configure-407-# ---------------------------------------- python3.9-3.9.1~rc1/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are python3.9-3.9.1~rc1/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## python3.9-3.9.1~rc1/configure-470- eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && python3.9-3.9.1~rc1/configure:471: test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { python3.9-3.9.1~rc1/configure-472- # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) ############################################## python3.9-3.9.1~rc1/configure-930- case $ac_option in python3.9-3.9.1~rc1/configure:931: *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; python3.9-3.9.1~rc1/configure-932- *=) ac_optarg= ;; ############################################## python3.9-3.9.1~rc1/configure-974- -disable-* | --disable-*) python3.9-3.9.1~rc1/configure:975: ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` python3.9-3.9.1~rc1/configure-976- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.1~rc1/configure-979- ac_useropt_orig=$ac_useropt python3.9-3.9.1~rc1/configure:980: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.1~rc1/configure-981- case $ac_user_opts in ############################################## python3.9-3.9.1~rc1/configure-1000- -enable-* | --enable-*) python3.9-3.9.1~rc1/configure:1001: ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` python3.9-3.9.1~rc1/configure-1002- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.1~rc1/configure-1005- ac_useropt_orig=$ac_useropt python3.9-3.9.1~rc1/configure:1006: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.1~rc1/configure-1007- case $ac_user_opts in ############################################## python3.9-3.9.1~rc1/configure-1204- -with-* | --with-*) python3.9-3.9.1~rc1/configure:1205: ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` python3.9-3.9.1~rc1/configure-1206- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.1~rc1/configure-1209- ac_useropt_orig=$ac_useropt python3.9-3.9.1~rc1/configure:1210: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.1~rc1/configure-1211- case $ac_user_opts in ############################################## python3.9-3.9.1~rc1/configure-1220- -without-* | --without-*) python3.9-3.9.1~rc1/configure:1221: ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` python3.9-3.9.1~rc1/configure-1222- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.1~rc1/configure-1225- ac_useropt_orig=$ac_useropt python3.9-3.9.1~rc1/configure:1226: ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` python3.9-3.9.1~rc1/configure-1227- case $ac_user_opts in ############################################## python3.9-3.9.1~rc1/configure-1258- *=*) python3.9-3.9.1~rc1/configure:1259: ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` python3.9-3.9.1~rc1/configure-1260- # Reject names that are not valid shell variable names. ############################################## python3.9-3.9.1~rc1/configure-1279-if test -n "$ac_prev"; then python3.9-3.9.1~rc1/configure:1280: ac_option=--`echo $ac_prev | sed 's/_/-/g'` python3.9-3.9.1~rc1/configure-1281- as_fn_error $? "missing argument to $ac_option" ############################################## python3.9-3.9.1~rc1/configure-1301- */ ) python3.9-3.9.1~rc1/configure:1302: ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` python3.9-3.9.1~rc1/configure-1303- eval $ac_var=\$ac_val;; ############################################## python3.9-3.9.1~rc1/configure-1336-ac_ls_di=`ls -di .` && python3.9-3.9.1~rc1/configure:1337:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || python3.9-3.9.1~rc1/configure-1338- as_fn_error $? "working directory cannot be determined" ############################################## python3.9-3.9.1~rc1/configure-1392-case $srcdir in python3.9-3.9.1~rc1/configure:1393:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; python3.9-3.9.1~rc1/configure-1394-esac ############################################## python3.9-3.9.1~rc1/configure-1435-By default, \`make install' will install all the files in python3.9-3.9.1~rc1/configure:1436:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify python3.9-3.9.1~rc1/configure:1437:an installation prefix other than \`$ac_default_prefix' using \`--prefix', python3.9-3.9.1~rc1/configure-1438-for instance \`--prefix=\$HOME'. ############################################## python3.9-3.9.1~rc1/configure-1627-*) python3.9-3.9.1~rc1/configure:1628: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` python3.9-3.9.1~rc1/configure-1629- # A ".." for each directory in $ac_dir_suffix. python3.9-3.9.1~rc1/configure:1630: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` python3.9-3.9.1~rc1/configure-1631- case $ac_top_builddir_sub in ############################################## python3.9-3.9.1~rc1/configure-2284- as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack python3.9-3.9.1~rc1/configure:2285: as_decl_name=`echo $2|sed 's/ *(.*//'` python3.9-3.9.1~rc1/configure:2286: as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` python3.9-3.9.1~rc1/configure-2287- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 ############################################## python3.9-3.9.1~rc1/configure-2455- *\'*) python3.9-3.9.1~rc1/configure:2456: ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.1~rc1/configure-2457- esac ############################################## python3.9-3.9.1~rc1/configure-2538- case $ac_val in python3.9-3.9.1~rc1/configure:2539: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; python3.9-3.9.1~rc1/configure-2540- esac ############################################## python3.9-3.9.1~rc1/configure-2553- case $ac_val in python3.9-3.9.1~rc1/configure:2554: *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; python3.9-3.9.1~rc1/configure-2555- esac ############################################## python3.9-3.9.1~rc1/configure-2673- set,) python3.9-3.9.1~rc1/configure:2674: { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 python3.9-3.9.1~rc1/configure:2675:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} python3.9-3.9.1~rc1/configure-2676- ac_cache_corrupted=: ;; ############################################## python3.9-3.9.1~rc1/configure-2684- # differences in whitespace do not lead to failure. python3.9-3.9.1~rc1/configure:2685: ac_old_val_w=`echo x $ac_old_val` python3.9-3.9.1~rc1/configure:2686: ac_new_val_w=`echo x $ac_new_val` python3.9-3.9.1~rc1/configure-2687- if test "$ac_old_val_w" != "$ac_new_val_w"; then ############################################## python3.9-3.9.1~rc1/configure-2704- case $ac_new_val in python3.9-3.9.1~rc1/configure:2705: *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.1~rc1/configure-2706- *) ac_arg=$ac_var=$ac_new_val ;; ############################################## python3.9-3.9.1~rc1/configure-2852-test "x$ac_build_alias" = x && python3.9-3.9.1~rc1/configure:2853: ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` python3.9-3.9.1~rc1/configure-2854-test "x$ac_build_alias" = x && python3.9-3.9.1~rc1/configure-2855- as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 python3.9-3.9.1~rc1/configure:2856:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || python3.9-3.9.1~rc1/configure-2857- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 ############################################## python3.9-3.9.1~rc1/configure-2876-IFS=$ac_save_IFS python3.9-3.9.1~rc1/configure:2877:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac python3.9-3.9.1~rc1/configure-2878- ############################################## python3.9-3.9.1~rc1/configure-2887-else python3.9-3.9.1~rc1/configure:2888: ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || python3.9-3.9.1~rc1/configure-2889- as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 ############################################## python3.9-3.9.1~rc1/configure-2909-IFS=$ac_save_IFS python3.9-3.9.1~rc1/configure:2910:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac python3.9-3.9.1~rc1/configure-2911- ############################################## python3.9-3.9.1~rc1/configure-2990-if test "$prefix" != "/"; then python3.9-3.9.1~rc1/configure:2991: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.1~rc1/configure-2992-fi ############################################## python3.9-3.9.1~rc1/configure-3105- then python3.9-3.9.1~rc1/configure:3106: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.1~rc1/configure-3107- then ############################################## python3.9-3.9.1~rc1/configure-3138- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.1~rc1/configure:3139: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr 'A-Z' 'a-z'` python3.9-3.9.1~rc1/configure-3140- ############################################## python3.9-3.9.1~rc1/configure-3204- */Library/Frameworks) python3.9-3.9.1~rc1/configure:3205: MDIR="`dirname "${enableval}"`" python3.9-3.9.1~rc1/configure:3206: MDIR="`dirname "${MDIR}"`" python3.9-3.9.1~rc1/configure-3207- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.1~rc1/configure-3550- then python3.9-3.9.1~rc1/configure:3551: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.1~rc1/configure-3552- then ############################################## python3.9-3.9.1~rc1/configure-3927-$as_echo_n "checking whether the C compiler works... " >&6; } python3.9-3.9.1~rc1/configure:3928:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` python3.9-3.9.1~rc1/configure-3929- ############################################## python3.9-3.9.1~rc1/configure-3971- then :; else python3.9-3.9.1~rc1/configure:3972: ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` python3.9-3.9.1~rc1/configure-3973- fi ############################################## python3.9-3.9.1~rc1/configure-4031- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; python3.9-3.9.1~rc1/configure:4032: *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` python3.9-3.9.1~rc1/configure-4033- break;; ############################################## python3.9-3.9.1~rc1/configure-4140- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; python3.9-3.9.1~rc1/configure:4141: *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` python3.9-3.9.1~rc1/configure-4142- break;; ############################################## python3.9-3.9.1~rc1/configure-4526- # Check for GNU $ac_path_GREP python3.9-3.9.1~rc1/configure:4527:case `"$ac_path_GREP" --version 2>&1` in python3.9-3.9.1~rc1/configure-4528-*GNU*) ############################################## python3.9-3.9.1~rc1/configure-4595- # Check for GNU $ac_path_SED python3.9-3.9.1~rc1/configure:4596:case `"$ac_path_SED" --version 2>&1` in python3.9-3.9.1~rc1/configure-4597-*GNU*) ############################################## python3.9-3.9.1~rc1/configure-5347-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.1~rc1/configure:5348: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.1~rc1/configure-5349- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PLATFORM_TRIPLET" >&5 ############################################## python3.9-3.9.1~rc1/configure-5424- # Check for GNU $ac_path_EGREP python3.9-3.9.1~rc1/configure:5425:case `"$ac_path_EGREP" --version 2>&1` in python3.9-3.9.1~rc1/configure-5426-*GNU*) ############################################## python3.9-3.9.1~rc1/configure-5585-do : python3.9-3.9.1~rc1/configure:5586: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.1~rc1/configure-5587-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default ############################################## python3.9-3.9.1~rc1/configure-5590- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:5591:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-5592-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-5845-if test "$GCC" = yes; then python3.9-3.9.1~rc1/configure:5846: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.1~rc1/configure-5847-fi python3.9-3.9.1~rc1/configure:5848:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.1~rc1/configure-5849- *GNU*) ############################################## python3.9-3.9.1~rc1/configure-6332- as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue python3.9-3.9.1~rc1/configure:6333: case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( python3.9-3.9.1~rc1/configure-6334- 'mkdir (GNU coreutils) '* | \ ############################################## python3.9-3.9.1~rc1/configure-6509- then python3.9-3.9.1~rc1/configure:6510: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.1~rc1/configure:6511: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.1~rc1/configure:6512: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.1~rc1/configure-6513- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.1~rc1/configure-7299- test "$Py_DEBUG" != "true" && \ python3.9-3.9.1~rc1/configure:7300: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.1~rc1/configure-7301- then ############################################## python3.9-3.9.1~rc1/configure-8013-do : python3.9-3.9.1~rc1/configure:8014: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.1~rc1/configure-8015-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.1~rc1/configure-8017- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:8018:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-8019-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-8026-for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do python3.9-3.9.1~rc1/configure:8027: as_ac_Header=`$as_echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` python3.9-3.9.1~rc1/configure-8028-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 ############################################## python3.9-3.9.1~rc1/configure-8058- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:8059:#define `$as_echo "HAVE_$ac_hdr" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-8060-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-8343-do : python3.9-3.9.1~rc1/configure:8344: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.1~rc1/configure-8345-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " ############################################## python3.9-3.9.1~rc1/configure-8352- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:8353:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-8354-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-9547- FreeBSD*) python3.9-3.9.1~rc1/configure:9548: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.1~rc1/configure-9549- then ############################################## python3.9-3.9.1~rc1/configure-9555- OpenBSD*) python3.9-3.9.1~rc1/configure:9556: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.1~rc1/configure-9557- then ############################################## python3.9-3.9.1~rc1/configure-9663- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.1~rc1/configure:9664: if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ] python3.9-3.9.1~rc1/configure-9665- then ############################################## python3.9-3.9.1~rc1/configure-9870-do : python3.9-3.9.1~rc1/configure:9871: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.1~rc1/configure-9872-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.1~rc1/configure-9874- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:9875:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-9876-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-10573-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.1~rc1/configure:10574: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.1~rc1/configure-10575-else ############################################## python3.9-3.9.1~rc1/configure-10681-else python3.9-3.9.1~rc1/configure:10682: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.1~rc1/configure-10683- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.1~rc1/configure-11728-do : python3.9-3.9.1~rc1/configure:11729: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.1~rc1/configure-11730-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.1~rc1/configure-11732- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:11733:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-11734-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-12877-do : python3.9-3.9.1~rc1/configure:12878: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.1~rc1/configure-12879-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.1~rc1/configure-12881- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:12882:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-12883-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-14694-do : python3.9-3.9.1~rc1/configure:14695: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.1~rc1/configure-14696-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.1~rc1/configure-14698- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:14699:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-14700-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-14706-do : python3.9-3.9.1~rc1/configure:14707: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.1~rc1/configure-14708-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.1~rc1/configure-14710- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:14711:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-14712-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-15368-$as_echo_n "checking SOABI... " >&6; } python3.9-3.9.1~rc1/configure:15369:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/configure-15370-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $SOABI" >&5 ############################################## python3.9-3.9.1~rc1/configure-15376- python3.9-3.9.1~rc1/configure:15377: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/configure-15378- ############################################## python3.9-3.9.1~rc1/configure-16153-do : python3.9-3.9.1~rc1/configure:16154: as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` python3.9-3.9.1~rc1/configure-16155-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" ############################################## python3.9-3.9.1~rc1/configure-16157- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:16158:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-16159-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-16872- python3.9-3.9.1~rc1/configure:16873:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.1~rc1/configure-16874-do ############################################## python3.9-3.9.1~rc1/configure-16984- int r; python3.9-3.9.1~rc1/configure:16985: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.1~rc1/configure-16986- "xorl %0, %0\n\t" ############################################## python3.9-3.9.1~rc1/configure-17307-do : python3.9-3.9.1~rc1/configure:17308: as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` python3.9-3.9.1~rc1/configure-17309-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ############################################## python3.9-3.9.1~rc1/configure-17311- cat >>confdefs.h <<_ACEOF python3.9-3.9.1~rc1/configure:17312:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 python3.9-3.9.1~rc1/configure-17313-_ACEOF ############################################## python3.9-3.9.1~rc1/configure-17433- if test x"$PKG_CONFIG" != x""; then python3.9-3.9.1~rc1/configure:17434: OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null` python3.9-3.9.1~rc1/configure-17435- if test $? = 0; then python3.9-3.9.1~rc1/configure:17436: OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null` python3.9-3.9.1~rc1/configure:17437: OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null` python3.9-3.9.1~rc1/configure-17438- found=true ############################################## python3.9-3.9.1~rc1/configure-17762- ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' python3.9-3.9.1~rc1/configure:17763: ac_i=`$as_echo "$ac_i" | sed "$ac_script"` python3.9-3.9.1~rc1/configure-17764- # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR ############################################## python3.9-3.9.1~rc1/configure-17830-if test -z "$BASH_VERSION$ZSH_VERSION" \ python3.9-3.9.1~rc1/configure:17831: && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.1~rc1/configure-17832- as_echo='print -r --' python3.9-3.9.1~rc1/configure-17833- as_echo_n='print -rn --' python3.9-3.9.1~rc1/configure:17834:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then python3.9-3.9.1~rc1/configure-17835- as_echo='printf %s\n' ############################################## python3.9-3.9.1~rc1/configure-17837-else python3.9-3.9.1~rc1/configure:17838: if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then python3.9-3.9.1~rc1/configure-17839- as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' ############################################## python3.9-3.9.1~rc1/configure-17847- expr "X$arg" : "X\\(.*\\)$as_nl"; python3.9-3.9.1~rc1/configure:17848: arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; python3.9-3.9.1~rc1/configure-17849- esac; ############################################## python3.9-3.9.1~rc1/configure-17924-# ---------------------------------------- python3.9-3.9.1~rc1/configure:17925:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are python3.9-3.9.1~rc1/configure-17926-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the ############################################## python3.9-3.9.1~rc1/configure-17996- { python3.9-3.9.1~rc1/configure:17997: as_val=`expr "$@" || test $? -eq 1` python3.9-3.9.1~rc1/configure-17998- } ############################################## python3.9-3.9.1~rc1/configure-18100- case $as_dir in #( python3.9-3.9.1~rc1/configure:18101: *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( python3.9-3.9.1~rc1/configure-18102- *) as_qdir=$as_dir;; ############################################## python3.9-3.9.1~rc1/configure-18231-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 python3.9-3.9.1~rc1/configure:18232:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" python3.9-3.9.1~rc1/configure-18233-ac_cs_version="\\ ############################################## python3.9-3.9.1~rc1/configure-18255- --*=?*) python3.9-3.9.1~rc1/configure:18256: ac_option=`expr "X$1" : 'X\([^=]*\)='` python3.9-3.9.1~rc1/configure:18257: ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` python3.9-3.9.1~rc1/configure-18258- ac_shift=: ############################################## python3.9-3.9.1~rc1/configure-18260- --*=) python3.9-3.9.1~rc1/configure:18261: ac_option=`expr "X$1" : 'X\([^=]*\)='` python3.9-3.9.1~rc1/configure-18262- ac_optarg= ############################################## python3.9-3.9.1~rc1/configure-18284- case $ac_optarg in python3.9-3.9.1~rc1/configure:18285: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.1~rc1/configure-18286- '') as_fn_error $? "missing file argument" ;; ############################################## python3.9-3.9.1~rc1/configure-18292- case $ac_optarg in python3.9-3.9.1~rc1/configure:18293: *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; python3.9-3.9.1~rc1/configure-18294- esac ############################################## python3.9-3.9.1~rc1/configure-18421-fi python3.9-3.9.1~rc1/configure:18422:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null` python3.9-3.9.1~rc1/configure-18423-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ############################################## python3.9-3.9.1~rc1/configure-18438- as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 python3.9-3.9.1~rc1/configure:18439:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` python3.9-3.9.1~rc1/configure-18440-ac_delim='%!_!# ' ############################################## python3.9-3.9.1~rc1/configure-18444- python3.9-3.9.1~rc1/configure:18445: ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` python3.9-3.9.1~rc1/configure-18446- if test $ac_delim_n = $ac_delim_num; then ############################################## python3.9-3.9.1~rc1/configure-18582-for ac_last_try in false false :; do python3.9-3.9.1~rc1/configure:18583: ac_tt=`sed -n "/$ac_delim/p" confdefs.h` python3.9-3.9.1~rc1/configure-18584- if test -z "$ac_tt"; then ############################################## python3.9-3.9.1~rc1/configure-18714- esac python3.9-3.9.1~rc1/configure:18715: case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac python3.9-3.9.1~rc1/configure-18716- as_fn_append ac_file_inputs " '$ac_f'" ############################################## python3.9-3.9.1~rc1/configure-18773-*) python3.9-3.9.1~rc1/configure:18774: ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` python3.9-3.9.1~rc1/configure-18775- # A ".." for each directory in $ac_dir_suffix. python3.9-3.9.1~rc1/configure:18776: ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` python3.9-3.9.1~rc1/configure-18777- case $ac_top_builddir_sub in ############################################## python3.9-3.9.1~rc1/configure-18834-/@mandir@/p' python3.9-3.9.1~rc1/configure:18835:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in python3.9-3.9.1~rc1/configure-18836-*datarootdir*) ac_datarootdir_seen=yes;; ############################################## python3.9-3.9.1~rc1/configure-18851- python3.9-3.9.1~rc1/configure:18852:# Neutralize VPATH when `$srcdir' = `.'. python3.9-3.9.1~rc1/configure-18853-# Shell code in configure.ac might set extrasub. ############################################## python3.9-3.9.1~rc1/configure-18879-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && python3.9-3.9.1~rc1/configure:18880: { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && python3.9-3.9.1~rc1/configure-18881- { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ ############################################## python3.9-3.9.1~rc1/aclocal.m4-123- PKG_CHECK_EXISTS([$3], python3.9-3.9.1~rc1/aclocal.m4:124: [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null` python3.9-3.9.1~rc1/aclocal.m4-125- test "x$?" != "x0" && pkg_failed=yes ], ############################################## python3.9-3.9.1~rc1/aclocal.m4-171- if test $_pkg_short_errors_supported = yes; then python3.9-3.9.1~rc1/aclocal.m4:172: $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1` python3.9-3.9.1~rc1/aclocal.m4-173- else python3.9-3.9.1~rc1/aclocal.m4:174: $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1` python3.9-3.9.1~rc1/aclocal.m4-175- fi ############################################## python3.9-3.9.1~rc1/Mac/PythonLauncher/Makefile.in-75-Info.plist: $(srcdir)/Info.plist.in python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Mac/README.rst-252- python3.9-3.9.1~rc1/Mac/README.rst:253:Installing in another place, for instance ``$HOME/Library/Frameworks`` if you python3.9-3.9.1~rc1/Mac/README.rst-254-have no admin privileges on your machine, is possible. This can be accomplished python3.9-3.9.1~rc1/Mac/README.rst:255:by configuring with ``--enable-framework=$HOME/Library/Frameworks``. python3.9-3.9.1~rc1/Mac/README.rst-256-The other two directories will then also be installed in your home directory, python3.9-3.9.1~rc1/Mac/README.rst:257:at ``$HOME/Applications/Python-<VERSION>`` and ``$HOME/bin``. python3.9-3.9.1~rc1/Mac/README.rst-258- ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/build-installer.py-843- # unilaterally disable assembly code building to avoid the problem. python3.9-3.9.1~rc1/Mac/BuildScript/build-installer.py:844: no_asm = int(platform.release().split(".")[0]) < 9 python3.9-3.9.1~rc1/Mac/BuildScript/build-installer.py-845- ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-13- # we need. python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile:14: theShell="`finger $USER | grep Shell: | head -1 | awk '{ print $NF }'`" python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-15- ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-20-# Make sure the directory ${PYTHON_ROOT}/bin is on the users PATH. python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile:21:BSH="`basename "${theShell}"`" python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-22-case "${BSH}" in ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-24- if [ `id -ur` = 0 ]; then python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-26- else python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile:27: P="`(exec -l ${theShell} -c 'echo $PATH')`" python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-28- fi ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-36-# Now ensure that our bin directory is on $P and before /usr/bin at that python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile:37:for elem in `echo $P | tr ':' ' '` python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-38-do ############################################## python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-92-echo "# Setting PATH for Python ${PYVER}" >> "${PR}" python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile:93:echo "# The original version is saved in `basename ${PR}`.pysave" >> "${PR}" python3.9-3.9.1~rc1/Mac/BuildScript/scripts/postflight.patch-profile-94-echo 'PATH="'"${PYTHON_ROOT}/bin"':${PATH}"' >> "${PR}" ############################################## python3.9-3.9.1~rc1/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.9-3.9.1~rc1/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.9-3.9.1~rc1/Mac/Makefile.in-224- if [ -f "$(DESTDIR)$(LIBDEST)/idlelib/config-main.def" ]; then \ ############################################## python3.9-3.9.1~rc1/Mac/Tools/pythonw.c-64- python3.9-3.9.1~rc1/Mac/Tools/pythonw.c:65: if (dladdr(Py_Initialize, &info) == 0) { python3.9-3.9.1~rc1/Mac/Tools/pythonw.c-66- return NULL; ############################################## python3.9-3.9.1~rc1/config.guess-34- python3.9-3.9.1~rc1/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'` python3.9-3.9.1~rc1/config.guess-36- ############################################## python3.9-3.9.1~rc1/config.guess-102-: ${TMPDIR=/tmp} ; python3.9-3.9.1~rc1/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || python3.9-3.9.1~rc1/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || ############################################## python3.9-3.9.1~rc1/config.guess-151- EOF python3.9-3.9.1~rc1/config.guess:152: eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" python3.9-3.9.1~rc1/config.guess-153- ############################################## python3.9-3.9.1~rc1/config.guess-188- earmv*) python3.9-3.9.1~rc1/config.guess:189: arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` python3.9-3.9.1~rc1/config.guess:190: endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` python3.9-3.9.1~rc1/config.guess-191- machine="${arch}${endian}"-unknown ############################################## python3.9-3.9.1~rc1/config.guess-220- expr='s/^earmv[0-9]/-eabi/;s/eb$//' python3.9-3.9.1~rc1/config.guess:221: abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"` python3.9-3.9.1~rc1/config.guess-222- ;; ############################################## python3.9-3.9.1~rc1/config.guess-233- *) python3.9-3.9.1~rc1/config.guess:234: release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2` python3.9-3.9.1~rc1/config.guess-235- ;; ############################################## python3.9-3.9.1~rc1/config.guess-280- *4.0) python3.9-3.9.1~rc1/config.guess:281: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` python3.9-3.9.1~rc1/config.guess-282- ;; python3.9-3.9.1~rc1/config.guess-283- *5.*) python3.9-3.9.1~rc1/config.guess:284: UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` python3.9-3.9.1~rc1/config.guess-285- ;; ############################################## python3.9-3.9.1~rc1/config.guess-290- # types through head -n 1, so we only detect the type of CPU 0. python3.9-3.9.1~rc1/config.guess:291: ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` python3.9-3.9.1~rc1/config.guess-292- case "$ALPHA_CPU_TYPE" in ############################################## python3.9-3.9.1~rc1/config.guess-328- # 1.2 uses "1.2" for uname -r. python3.9-3.9.1~rc1/config.guess:329: echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" python3.9-3.9.1~rc1/config.guess-330- # Reset EXIT trap before exiting to avoid spurious non-zero exit code. ############################################## python3.9-3.9.1~rc1/config.guess-379- s390x:SunOS:*:*) python3.9-3.9.1~rc1/config.guess:380: echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-381- exit ;; python3.9-3.9.1~rc1/config.guess-382- sun4H:SunOS:5.*:*) python3.9-3.9.1~rc1/config.guess:383: echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-384- exit ;; python3.9-3.9.1~rc1/config.guess-385- sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) python3.9-3.9.1~rc1/config.guess:386: echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-387- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-404- fi python3.9-3.9.1~rc1/config.guess:405: echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-406- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-410- # it's likely to be more like Solaris than SunOS4. python3.9-3.9.1~rc1/config.guess:411: echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-412- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-419- # Japanese Language versions have a version number like `4.1.3-JL'. python3.9-3.9.1~rc1/config.guess:420: echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" python3.9-3.9.1~rc1/config.guess-421- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-425- sun*:*:4.2BSD:*) python3.9-3.9.1~rc1/config.guess:426: UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` python3.9-3.9.1~rc1/config.guess-427- test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 ############################################## python3.9-3.9.1~rc1/config.guess-507- $CC_FOR_BUILD -o "$dummy" "$dummy.c" && python3.9-3.9.1~rc1/config.guess:508: dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && python3.9-3.9.1~rc1/config.guess:509: SYSTEM_NAME=`"$dummy" "$dummyarg"` && python3.9-3.9.1~rc1/config.guess-510- { echo "$SYSTEM_NAME"; exit; } ############################################## python3.9-3.9.1~rc1/config.guess-563- *:IRIX*:*:*) python3.9-3.9.1~rc1/config.guess:564: echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" python3.9-3.9.1~rc1/config.guess-565- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-593-EOF python3.9-3.9.1~rc1/config.guess:594: if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` python3.9-3.9.1~rc1/config.guess-595- then ############################################## python3.9-3.9.1~rc1/config.guess-606- *:AIX:*:[4567]) python3.9-3.9.1~rc1/config.guess:607: IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` python3.9-3.9.1~rc1/config.guess-608- if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then ############################################## python3.9-3.9.1~rc1/config.guess-642- 9000/[34678]??:HP-UX:*:*) python3.9-3.9.1~rc1/config.guess:643: HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` python3.9-3.9.1~rc1/config.guess-644- case "$UNAME_MACHINE" in ############################################## python3.9-3.9.1~rc1/config.guess-696-EOF python3.9-3.9.1~rc1/config.guess:697: (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"` python3.9-3.9.1~rc1/config.guess-698- test -z "$HP_ARCH" && HP_ARCH=hppa ############################################## python3.9-3.9.1~rc1/config.guess-724- ia64:HP-UX:*:*) python3.9-3.9.1~rc1/config.guess:725: HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` python3.9-3.9.1~rc1/config.guess-726- echo ia64-hp-hpux"$HPUX_REV" ############################################## python3.9-3.9.1~rc1/config.guess-754-EOF python3.9-3.9.1~rc1/config.guess:755: $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && python3.9-3.9.1~rc1/config.guess-756- { echo "$SYSTEM_NAME"; exit; } ############################################## python3.9-3.9.1~rc1/config.guess-825- FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` python3.9-3.9.1~rc1/config.guess:826: FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` python3.9-3.9.1~rc1/config.guess-827- echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## python3.9-3.9.1~rc1/config.guess-830- FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` python3.9-3.9.1~rc1/config.guess:831: FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` python3.9-3.9.1~rc1/config.guess-832- echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" ############################################## python3.9-3.9.1~rc1/config.guess-850- esac python3.9-3.9.1~rc1/config.guess:851: echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" python3.9-3.9.1~rc1/config.guess-852- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-886- prep*:SunOS:5.*:*) python3.9-3.9.1~rc1/config.guess:887: echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" python3.9-3.9.1~rc1/config.guess-888- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-890- # the GNU system python3.9-3.9.1~rc1/config.guess:891: echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" python3.9-3.9.1~rc1/config.guess-892- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-894- # other systems with GNU libc and userland python3.9-3.9.1~rc1/config.guess:895: echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" python3.9-3.9.1~rc1/config.guess-896- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-988-EOF python3.9-3.9.1~rc1/config.guess:989: eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`" python3.9-3.9.1~rc1/config.guess-990- test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; } ############################################## python3.9-3.9.1~rc1/config.guess-1088- i*86:*:4.*:*) python3.9-3.9.1~rc1/config.guess:1089: UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` python3.9-3.9.1~rc1/config.guess-1090- if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then ############################################## python3.9-3.9.1~rc1/config.guess-1291- fi python3.9-3.9.1~rc1/config.guess:1292: if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then python3.9-3.9.1~rc1/config.guess-1293- if [ "$CC_FOR_BUILD" != no_compiler_found ]; then ############################################## python3.9-3.9.1~rc1/config.guess-1389- *:DragonFly:*:*) python3.9-3.9.1~rc1/config.guess:1390: echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" python3.9-3.9.1~rc1/config.guess-1391- exit ;; ############################################## python3.9-3.9.1~rc1/config.guess-1402- i*86:skyos:*:*) python3.9-3.9.1~rc1/config.guess:1403: echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" python3.9-3.9.1~rc1/config.guess-1404- exit ;; ############################################## python3.9-3.9.1~rc1/Tools/nuget/make_pkg.proj-28- <PythonArguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</PythonArguments> python3.9-3.9.1~rc1/Tools/nuget/make_pkg.proj:29: <PythonArguments>$(PythonArguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</PythonArguments> python3.9-3.9.1~rc1/Tools/nuget/make_pkg.proj-30- <PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)obj"</PythonArguments> ############################################## python3.9-3.9.1~rc1/Tools/clinic/clinic.py-150-c_keywords = set(""" python3.9-3.9.1~rc1/Tools/clinic/clinic.py:151:asm auto break case char const continue default do double python3.9-3.9.1~rc1/Tools/clinic/clinic.py-152-else enum extern float for goto if inline int long ############################################## python3.9-3.9.1~rc1/Tools/msi/make_zip.proj-18- <Arguments>"$(PythonExe)" "$(PySourcePath)PC\layout"</Arguments> python3.9-3.9.1~rc1/Tools/msi/make_zip.proj:19: <Arguments>$(Arguments) -b "$(BuildPath.TrimEnd(`\`))" -s "$(PySourcePath.TrimEnd(`\`))"</Arguments> python3.9-3.9.1~rc1/Tools/msi/make_zip.proj-20- <Arguments>$(Arguments) -t "$(IntermediateOutputPath)\zip_$(ArchName)"</Arguments> ############################################## python3.9-3.9.1~rc1/Tools/msi/msi.targets-59- <PropertyGroup Condition="'@(WxlTemplate)' != ''"> python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Tools/msi/msi.targets-61- <_ExistingContent Condition="Exists('$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl')">$([System.IO.File]::ReadAllText($(IntermediateOutputPath)%(WxlTemplate.Filename).wxl))</_ExistingContent> ############################################## python3.9-3.9.1~rc1/Tools/msi/bundle/bundle.targets-20- <DownloadUrl Condition="'$(DownloadUrl)' == '' and '$(DownloadUrlBase)' != ''">$(DownloadUrlBase.TrimEnd(`/`))/{version}/{arch}{releasename}/{msi}</DownloadUrl> python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Tools/msi/bundle/bundle.targets-22- <DefineConstants Condition="'$(DownloadUrl)' == ''">$(DefineConstants);DownloadUrl={2}</DefineConstants> ############################################## python3.9-3.9.1~rc1/Tools/msi/uploadrelease.proj-19- <EXETarget>$(DownloadUrlBase.TrimEnd(`/`))/$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)</EXETarget> python3.9-3.9.1~rc1/Tools/msi/uploadrelease.proj:20: <MSITarget>$(DownloadUrl.Replace(`{version}`, `$(MajorVersionNumber).$(MinorVersionNumber).$(MicroVersionNumber)`).Replace(`{arch}`, `$(ArchName)`).Replace(`{releasename}`, `$(ReleaseLevelName)`).Replace(`{msi}`, ``).TrimEnd(`/`))</MSITarget> python3.9-3.9.1~rc1/Tools/msi/uploadrelease.proj-21- </PropertyGroup> ############################################## python3.9-3.9.1~rc1/Tools/msi/msi.props-171- <_Uuids>@(_Uuid->'("%(Identity)", "$(MajorVersionNumber).$(MinorVersionNumber)/%(Uri)")',',')</_Uuids> python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Tools/msi/msi.props-173- </PropertyGroup> ############################################## python3.9-3.9.1~rc1/Tools/scripts/mailerdaemon.py-181- m = email.message_from_file(fp, _class=ErrorMessage) python3.9-3.9.1~rc1/Tools/scripts/mailerdaemon.py:182: sender = m.getaddr('From') python3.9-3.9.1~rc1/Tools/scripts/mailerdaemon.py-183- print('%s\t%-40s\t'%(fn, sender[1]), end=' ') ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-1344- python3.9-3.9.1~rc1/Misc/HISTORY:1345:- Issue #17717: The Windows build scripts now use a copy of NASM pulled from python3.9-3.9.1~rc1/Misc/HISTORY-1346- svn.python.org to build OpenSSL. ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-4102- python3.9-3.9.1~rc1/Misc/HISTORY:4103:- Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't cast python3.9-3.9.1~rc1/Misc/HISTORY-4104- 64-bit pointer to long (32 bits). ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-6206- python3.9-3.9.1~rc1/Misc/HISTORY:6207:- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 python3.9-3.9.1~rc1/Misc/HISTORY-6208- on Windows. ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-15453- python3.9-3.9.1~rc1/Misc/HISTORY:15454:- Issue #5201: distutils.sysconfig.parse_makefile() now understands `$$` python3.9-3.9.1~rc1/Misc/HISTORY-15455- in Makefiles. This prevents compile errors when using syntax like: python3.9-3.9.1~rc1/Misc/HISTORY:15456: `LDFLAGS='-rpath=\$$LIB:/some/other/path'`. Patch by Floris Bruynooghe. python3.9-3.9.1~rc1/Misc/HISTORY-15457- ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-17540- python3.9-3.9.1~rc1/Misc/HISTORY:17541:- Bug #1535502, build _hashlib on Windows, and use masm assembler python3.9-3.9.1~rc1/Misc/HISTORY-17542- code in OpenSSL. ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-27550- python3.9-3.9.1~rc1/Misc/HISTORY:27551: - Modify the gethostbyaddr() code to also hold on to the lock until python3.9-3.9.1~rc1/Misc/HISTORY-27552- after it is safe to release, overlapping with the Python lock. ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-29125- python3.9-3.9.1~rc1/Misc/HISTORY:29126:- Add a new method of interpreter objects, interpaddr(). This returns python3.9-3.9.1~rc1/Misc/HISTORY-29127-the address of the Tcl interpreter object, as an integer. Not very ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-29499-support for adding headers, though). Also fixed a bug where an python3.9-3.9.1~rc1/Misc/HISTORY:29500:illegal address would cause a crash in getrouteaddr(), fixed a python3.9-3.9.1~rc1/Misc/HISTORY-29501-sign reversal in mktime_tz(), and use the local timezone by default ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-30453- python3.9-3.9.1~rc1/Misc/HISTORY:30454:- rfc822.py: Entirely rewritten parseaddr() function by Sjoerd python3.9-3.9.1~rc1/Misc/HISTORY:30455:Mullender, to be closer to the standard. This fixes the getaddr() python3.9-3.9.1~rc1/Misc/HISTORY-30456-method. Unfortunately, getaddrlist() is as broken as ever, since it ############################################## python3.9-3.9.1~rc1/Misc/HISTORY-32081- python3.9-3.9.1~rc1/Misc/HISTORY:32082:- Much improved parseaddr() in rfc822. python3.9-3.9.1~rc1/Misc/HISTORY-32083- ############################################## python3.9-3.9.1~rc1/Misc/NEWS-8372- python3.9-3.9.1~rc1/Misc/NEWS:8373:- bpo-34758: Add .wasm -> application/wasm to list of recognized file types python3.9-3.9.1~rc1/Misc/NEWS-8374- and content type headers ############################################## python3.9-3.9.1~rc1/Misc/NEWS-19744- python3.9-3.9.1~rc1/Misc/NEWS:19745:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and python3.9-3.9.1~rc1/Misc/NEWS-19746- gethostbyname_ex() functions of the socket module now decode the hostname ############################################## python3.9-3.9.1~rc1/Misc/NEWS-22026- python3.9-3.9.1~rc1/Misc/NEWS:22027:- bpo-26227: On Windows, getnameinfo(), gethostbyaddr() and python3.9-3.9.1~rc1/Misc/NEWS-22028- gethostbyname_ex() functions of the socket module now decode the hostname ############################################## python3.9-3.9.1~rc1/Misc/NEWS-25928- python3.9-3.9.1~rc1/Misc/NEWS:25929:- bpo-17717: The Windows build scripts now use a copy of NASM pulled from python3.9-3.9.1~rc1/Misc/NEWS-25930- svn.python.org to build OpenSSL. ############################################## python3.9-3.9.1~rc1/config.sub-52- python3.9-3.9.1~rc1/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'` python3.9-3.9.1~rc1/config.sub-54- ############################################## python3.9-3.9.1~rc1/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations. python3.9-3.9.1~rc1/config.sub:115:maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` python3.9-3.9.1~rc1/config.sub-116-case $maybe_os in ############################################## python3.9-3.9.1~rc1/config.sub-122- os=-$maybe_os python3.9-3.9.1~rc1/config.sub:123: basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` python3.9-3.9.1~rc1/config.sub-124- ;; ############################################## python3.9-3.9.1~rc1/config.sub-126- os=-linux-android python3.9-3.9.1~rc1/config.sub:127: basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown python3.9-3.9.1~rc1/config.sub-128- ;; python3.9-3.9.1~rc1/config.sub-129- *) python3.9-3.9.1~rc1/config.sub:130: basic_machine=`echo "$1" | sed 's/-[^-]*$//'` python3.9-3.9.1~rc1/config.sub-131- if [ "$basic_machine" != "$1" ] python3.9-3.9.1~rc1/config.sub:132: then os=`echo "$1" | sed 's/.*-/-/'` python3.9-3.9.1~rc1/config.sub-133- else os=; fi ############################################## python3.9-3.9.1~rc1/config.sub-180- os=-sco5v6 python3.9-3.9.1~rc1/config.sub:181: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-182- ;; ############################################## python3.9-3.9.1~rc1/config.sub-184- os=-sco3.2v5 python3.9-3.9.1~rc1/config.sub:185: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-186- ;; ############################################## python3.9-3.9.1~rc1/config.sub-188- os=-sco3.2v4 python3.9-3.9.1~rc1/config.sub:189: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-190- ;; python3.9-3.9.1~rc1/config.sub-191- -sco3.2.[4-9]*) python3.9-3.9.1~rc1/config.sub:192: os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` python3.9-3.9.1~rc1/config.sub:193: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-194- ;; ############################################## python3.9-3.9.1~rc1/config.sub-196- # Don't forget version if it is 3.2v4 or newer. python3.9-3.9.1~rc1/config.sub:197: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-198- ;; ############################################## python3.9-3.9.1~rc1/config.sub-200- # Don't forget version if it is 3.2v4 or newer. python3.9-3.9.1~rc1/config.sub:201: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-202- ;; ############################################## python3.9-3.9.1~rc1/config.sub-204- os=-sco3.2v2 python3.9-3.9.1~rc1/config.sub:205: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-206- ;; python3.9-3.9.1~rc1/config.sub-207- -udk*) python3.9-3.9.1~rc1/config.sub:208: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-209- ;; ############################################## python3.9-3.9.1~rc1/config.sub-211- os=-isc2.2 python3.9-3.9.1~rc1/config.sub:212: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-213- ;; ############################################## python3.9-3.9.1~rc1/config.sub-217- -isc*) python3.9-3.9.1~rc1/config.sub:218: basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-219- ;; ############################################## python3.9-3.9.1~rc1/config.sub-229- -ptx*) python3.9-3.9.1~rc1/config.sub:230: basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'` python3.9-3.9.1~rc1/config.sub-231- ;; ############################################## python3.9-3.9.1~rc1/config.sub-368- *-*-*) python3.9-3.9.1~rc1/config.sub:369: echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 python3.9-3.9.1~rc1/config.sub-370- exit 1 ############################################## python3.9-3.9.1~rc1/config.sub-497- amd64-*) python3.9-3.9.1~rc1/config.sub:498: basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-499- ;; ############################################## python3.9-3.9.1~rc1/config.sub-542- blackfin-*) python3.9-3.9.1~rc1/config.sub:543: basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-544- os=-linux ############################################## python3.9-3.9.1~rc1/config.sub-550- c54x-*) python3.9-3.9.1~rc1/config.sub:551: basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-552- ;; python3.9-3.9.1~rc1/config.sub-553- c55x-*) python3.9-3.9.1~rc1/config.sub:554: basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-555- ;; python3.9-3.9.1~rc1/config.sub-556- c6x-*) python3.9-3.9.1~rc1/config.sub:557: basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-558- ;; ############################################## python3.9-3.9.1~rc1/config.sub-654- e500v[12]-*) python3.9-3.9.1~rc1/config.sub:655: basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-656- os=$os"spe" ############################################## python3.9-3.9.1~rc1/config.sub-758- i*86v32) python3.9-3.9.1~rc1/config.sub:759: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-760- os=-sysv32 ############################################## python3.9-3.9.1~rc1/config.sub-762- i*86v4*) python3.9-3.9.1~rc1/config.sub:763: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-764- os=-sysv4 ############################################## python3.9-3.9.1~rc1/config.sub-766- i*86v) python3.9-3.9.1~rc1/config.sub:767: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-768- os=-sysv ############################################## python3.9-3.9.1~rc1/config.sub-770- i*86sol2) python3.9-3.9.1~rc1/config.sub:771: basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'` python3.9-3.9.1~rc1/config.sub-772- os=-solaris2 ############################################## python3.9-3.9.1~rc1/config.sub-796- leon-*|leon[3-9]-*) python3.9-3.9.1~rc1/config.sub:797: basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'` python3.9-3.9.1~rc1/config.sub-798- ;; ############################################## python3.9-3.9.1~rc1/config.sub-803- m68knommu-*) python3.9-3.9.1~rc1/config.sub:804: basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-805- os=-linux ############################################## python3.9-3.9.1~rc1/config.sub-837- mips3*-*) python3.9-3.9.1~rc1/config.sub:838: basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'` python3.9-3.9.1~rc1/config.sub-839- ;; python3.9-3.9.1~rc1/config.sub-840- mips3*) python3.9-3.9.1~rc1/config.sub:841: basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown python3.9-3.9.1~rc1/config.sub-842- ;; ############################################## python3.9-3.9.1~rc1/config.sub-859- ms1-*) python3.9-3.9.1~rc1/config.sub:860: basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'` python3.9-3.9.1~rc1/config.sub-861- ;; ############################################## python3.9-3.9.1~rc1/config.sub-984- parisc-*) python3.9-3.9.1~rc1/config.sub:985: basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-986- os=-linux ############################################## python3.9-3.9.1~rc1/config.sub-1000- pc98-*) python3.9-3.9.1~rc1/config.sub:1001: basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1002- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1015- pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) python3.9-3.9.1~rc1/config.sub:1016: basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1017- ;; python3.9-3.9.1~rc1/config.sub-1018- pentiumpro-* | p6-* | 6x86-* | athlon-*) python3.9-3.9.1~rc1/config.sub:1019: basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1020- ;; python3.9-3.9.1~rc1/config.sub-1021- pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) python3.9-3.9.1~rc1/config.sub:1022: basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1023- ;; python3.9-3.9.1~rc1/config.sub-1024- pentium4-*) python3.9-3.9.1~rc1/config.sub:1025: basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1026- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1034- ppc-* | ppcbe-*) python3.9-3.9.1~rc1/config.sub:1035: basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1036- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1040- ppcle-* | powerpclittle-*) python3.9-3.9.1~rc1/config.sub:1041: basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1042- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1044- ;; python3.9-3.9.1~rc1/config.sub:1045: ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1046- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1050- ppc64le-* | powerpc64little-*) python3.9-3.9.1~rc1/config.sub:1051: basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1052- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1126- strongarm-* | thumb-*) python3.9-3.9.1~rc1/config.sub:1127: basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'` python3.9-3.9.1~rc1/config.sub-1128- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1259- xscale-* | xscalee[bl]-*) python3.9-3.9.1~rc1/config.sub:1260: basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'` python3.9-3.9.1~rc1/config.sub-1261- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1321- *) python3.9-3.9.1~rc1/config.sub:1322: echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2 python3.9-3.9.1~rc1/config.sub-1323- exit 1 ############################################## python3.9-3.9.1~rc1/config.sub-1329- *-digital*) python3.9-3.9.1~rc1/config.sub:1330: basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'` python3.9-3.9.1~rc1/config.sub-1331- ;; python3.9-3.9.1~rc1/config.sub-1332- *-commodore*) python3.9-3.9.1~rc1/config.sub:1333: basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'` python3.9-3.9.1~rc1/config.sub-1334- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1350- -solaris1 | -solaris1.*) python3.9-3.9.1~rc1/config.sub:1351: os=`echo $os | sed -e 's|solaris1|sunos4|'` python3.9-3.9.1~rc1/config.sub-1352- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1359- -gnu/linux*) python3.9-3.9.1~rc1/config.sub:1360: os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` python3.9-3.9.1~rc1/config.sub-1361- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1411- -nto*) python3.9-3.9.1~rc1/config.sub:1412: os=`echo $os | sed -e 's|nto|nto-qnx|'` python3.9-3.9.1~rc1/config.sub-1413- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1418- -mac*) python3.9-3.9.1~rc1/config.sub:1419: os=`echo "$os" | sed -e 's|mac|macos|'` python3.9-3.9.1~rc1/config.sub-1420- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1424- -linux*) python3.9-3.9.1~rc1/config.sub:1425: os=`echo $os | sed -e 's|linux|linux-gnu|'` python3.9-3.9.1~rc1/config.sub-1426- ;; python3.9-3.9.1~rc1/config.sub-1427- -sunos5*) python3.9-3.9.1~rc1/config.sub:1428: os=`echo "$os" | sed -e 's|sunos5|solaris2|'` python3.9-3.9.1~rc1/config.sub-1429- ;; python3.9-3.9.1~rc1/config.sub-1430- -sunos6*) python3.9-3.9.1~rc1/config.sub:1431: os=`echo "$os" | sed -e 's|sunos6|solaris3|'` python3.9-3.9.1~rc1/config.sub-1432- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1473- -sinix5.*) python3.9-3.9.1~rc1/config.sub:1474: os=`echo $os | sed -e 's|sinix|sysv|'` python3.9-3.9.1~rc1/config.sub-1475- ;; ############################################## python3.9-3.9.1~rc1/config.sub-1532- # Get rid of the `-' at the beginning of $os. python3.9-3.9.1~rc1/config.sub:1533: os=`echo $os | sed 's/[^-]*-//'` python3.9-3.9.1~rc1/config.sub:1534: echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2 python3.9-3.9.1~rc1/config.sub-1535- exit 1 ############################################## python3.9-3.9.1~rc1/config.sub-1792- esac python3.9-3.9.1~rc1/config.sub:1793: basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"` python3.9-3.9.1~rc1/config.sub-1794- ;; ############################################## python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h-310-PyDoc_STRVAR(builtin_eval__doc__, python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h:311:"eval($module, source, globals=None, locals=None, /)\n" python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h-312-"--\n" ############################################## python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h-356-PyDoc_STRVAR(builtin_exec__doc__, python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h:357:"exec($module, source, globals=None, locals=None, /)\n" python3.9-3.9.1~rc1/Python/clinic/bltinmodule.c.h-358-"--\n" ############################################## python3.9-3.9.1~rc1/install-sh-234- fi python3.9-3.9.1~rc1/install-sh:235: cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; python3.9-3.9.1~rc1/install-sh-236- *) ############################################## python3.9-3.9.1~rc1/install-sh-280- dstdir=$dst python3.9-3.9.1~rc1/install-sh:281: dstbase=`basename "$src"` python3.9-3.9.1~rc1/install-sh-282- case $dst in ############################################## python3.9-3.9.1~rc1/install-sh-287- else python3.9-3.9.1~rc1/install-sh:288: dstdir=`dirname "$dst"` python3.9-3.9.1~rc1/install-sh-289- test -d "$dstdir" ############################################## python3.9-3.9.1~rc1/install-sh-354- test_tmpdir="$tmpdir/a" python3.9-3.9.1~rc1/install-sh:355: ls_ld_tmpdir=`ls -ld "$test_tmpdir"` python3.9-3.9.1~rc1/install-sh-356- case $ls_ld_tmpdir in ############################################## python3.9-3.9.1~rc1/install-sh-361- $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { python3.9-3.9.1~rc1/install-sh:362: ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` python3.9-3.9.1~rc1/install-sh-363- test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" ############################################## python3.9-3.9.1~rc1/install-sh-419- case $prefix in python3.9-3.9.1~rc1/install-sh:420: *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; python3.9-3.9.1~rc1/install-sh-421- *) qprefix=$prefix;; ############################################## python3.9-3.9.1~rc1/install-sh-468- if $copy_on_change && python3.9-3.9.1~rc1/install-sh:469: old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && python3.9-3.9.1~rc1/install-sh:470: new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && python3.9-3.9.1~rc1/install-sh-471- set -f && ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-299- @property python3.9-3.9.1~rc1/Lib/smtpd.py:300: def __addr(self): python3.9-3.9.1~rc1/Lib/smtpd.py-301- warn("Access to __addr attribute on SMTPChannel is deprecated, " ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-304- @__addr.setter python3.9-3.9.1~rc1/Lib/smtpd.py:305: def __addr(self, value): python3.9-3.9.1~rc1/Lib/smtpd.py-306- warn("Setting __addr attribute on SMTPChannel is deprecated, " ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-444- python3.9-3.9.1~rc1/Lib/smtpd.py:445: def _getaddr(self, arg): python3.9-3.9.1~rc1/Lib/smtpd.py-446- if not arg: ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-448- if arg.lstrip().startswith('<'): python3.9-3.9.1~rc1/Lib/smtpd.py:449: address, rest = get_angle_addr(arg) python3.9-3.9.1~rc1/Lib/smtpd.py-450- else: ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-503- if arg: python3.9-3.9.1~rc1/Lib/smtpd.py:504: address, params = self._getaddr(arg) python3.9-3.9.1~rc1/Lib/smtpd.py-505- if address: ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-524- arg = self._strip_command_keyword('FROM:', arg) python3.9-3.9.1~rc1/Lib/smtpd.py:525: address, params = self._getaddr(arg) python3.9-3.9.1~rc1/Lib/smtpd.py-526- if not address: ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-581- arg = self._strip_command_keyword('TO:', arg) python3.9-3.9.1~rc1/Lib/smtpd.py:582: address, params = self._getaddr(arg) python3.9-3.9.1~rc1/Lib/smtpd.py-583- if not address: ############################################## python3.9-3.9.1~rc1/Lib/smtpd.py-648- # try to re-use a server port if possible python3.9-3.9.1~rc1/Lib/smtpd.py:649: self.set_reuse_addr() python3.9-3.9.1~rc1/Lib/smtpd.py-650- self.bind(localaddr) ############################################## python3.9-3.9.1~rc1/Lib/unittest/test/test_discovery.py-86- # The test suites found should be sorted alphabetically for reliable python3.9-3.9.1~rc1/Lib/unittest/test/test_discovery.py:87: # execution order. python3.9-3.9.1~rc1/Lib/unittest/test/test_discovery.py-88- expected = [[name + ' module tests'] for name in ############################################## python3.9-3.9.1~rc1/Lib/unittest/mock.py-644- # XXXX should we get the attribute without triggering code python3.9-3.9.1~rc1/Lib/unittest/mock.py:645: # execution? python3.9-3.9.1~rc1/Lib/unittest/mock.py-646- wraps = getattr(self._mock_wraps, name) ############################################## python3.9-3.9.1~rc1/Lib/unittest/mock.py-1104- # needs to be set here so assertions on call arguments pass before python3.9-3.9.1~rc1/Lib/unittest/mock.py:1105: # execution in the case of awaited calls python3.9-3.9.1~rc1/Lib/unittest/mock.py-1106- _call = _Call((args, kwargs), two=True) ############################################## python3.9-3.9.1~rc1/Lib/email/_parseaddr.py-299- # Address is a phrase then a route addr python3.9-3.9.1~rc1/Lib/email/_parseaddr.py:300: routeaddr = self.getrouteaddr() python3.9-3.9.1~rc1/Lib/email/_parseaddr.py-301- ############################################## python3.9-3.9.1~rc1/Lib/email/_parseaddr.py-318- python3.9-3.9.1~rc1/Lib/email/_parseaddr.py:319: def getrouteaddr(self): python3.9-3.9.1~rc1/Lib/email/_parseaddr.py-320- """Parse a route address (Return-path value). ############################################## python3.9-3.9.1~rc1/Lib/email/utils.py-75- python3.9-3.9.1~rc1/Lib/email/utils.py:76:def formataddr(pair, charset='utf-8'): python3.9-3.9.1~rc1/Lib/email/utils.py:77: """The inverse of parseaddr(), this takes a 2-tuple of the form python3.9-3.9.1~rc1/Lib/email/utils.py-78- (realname, email_address) and returns the string value suitable ############################################## python3.9-3.9.1~rc1/Lib/email/utils.py-204- python3.9-3.9.1~rc1/Lib/email/utils.py:205:def parseaddr(addr): python3.9-3.9.1~rc1/Lib/email/utils.py-206- """ ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-384- python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:385:class NameAddr(TokenList): python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-386- ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-411- python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:412:class AngleAddr(TokenList): python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-413- ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1691- python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1692:def get_angle_addr(value): python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1693- """ angle-addr = [CFWS] "<" addr-spec ">" [CFWS] / obs-angle-addr ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1696- """ python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1697: angle_addr = AngleAddr() python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1698- if value[0] in CFWS_LEADER: ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1752- python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1753:def get_name_addr(value): python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1754- """ name-addr = [display-name] angle-addr ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1756- """ python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1757: name_addr = NameAddr() python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1758- # Both the optional display name and the angle-addr can start with cfws. ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1776- name_addr.append(token) python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1777: token, value = get_angle_addr(value) python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1778- if leader is not None: ############################################## python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1790- try: python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py:1791: token, value = get_name_addr(value) python3.9-3.9.1~rc1/Lib/email/_header_value_parser.py-1792- except errors.HeaderParseError: ############################################## python3.9-3.9.1~rc1/Lib/tkinter/test/test_tkinter/test_loadtk.py-33- # If that's the case, abort. python3.9-3.9.1~rc1/Lib/tkinter/test/test_tkinter/test_loadtk.py:34: with os.popen('echo $DISPLAY') as pipe: python3.9-3.9.1~rc1/Lib/tkinter/test/test_tkinter/test_loadtk.py-35- display = pipe.read().strip() ############################################## python3.9-3.9.1~rc1/Lib/tkinter/ttk.py-521- # since it allows doing self.tk.call(self._name, "theme", "use") python3.9-3.9.1~rc1/Lib/tkinter/ttk.py:522: return self.tk.eval("return $ttk::currentTheme") python3.9-3.9.1~rc1/Lib/tkinter/ttk.py-523- ############################################## python3.9-3.9.1~rc1/Lib/venv/scripts/common/activate-48-# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) python3.9-3.9.1~rc1/Lib/venv/scripts/common/activate:49:# could use `if (set -u; : $PYTHONHOME) ;` in bash python3.9-3.9.1~rc1/Lib/venv/scripts/common/activate-50-if [ -n "${PYTHONHOME:-}" ] ; then ############################################## python3.9-3.9.1~rc1/Lib/contextlib.py-353- os.remove(somefile) python3.9-3.9.1~rc1/Lib/contextlib.py:354: # Execution still resumes here if the file was already removed python3.9-3.9.1~rc1/Lib/contextlib.py-355- """ ############################################## python3.9-3.9.1~rc1/Lib/http/server.py-100-import shutil python3.9-3.9.1~rc1/Lib/http/server.py:101:import socket # For gethostbyaddr() python3.9-3.9.1~rc1/Lib/http/server.py-102-import socketserver ############################################## python3.9-3.9.1~rc1/Lib/importlib/_bootstrap_external.py-653- if hasattr(loader, 'get_filename'): python3.9-3.9.1~rc1/Lib/importlib/_bootstrap_external.py:654: # ExecutionLoader python3.9-3.9.1~rc1/Lib/importlib/_bootstrap_external.py-655- try: ############################################## python3.9-3.9.1~rc1/Lib/profile.py-451- # effort. Also note that if too large a value specified, then python3.9-3.9.1~rc1/Lib/profile.py:452: # execution time on some functions will actually appear as a python3.9-3.9.1~rc1/Lib/profile.py-453- # negative number. It is *normal* for some functions (with very ############################################## python3.9-3.9.1~rc1/Lib/smtplib.py-144- python3.9-3.9.1~rc1/Lib/smtplib.py:145:def quoteaddr(addrstring): python3.9-3.9.1~rc1/Lib/smtplib.py-146- """Quote a subset of the email addresses defined by RFC 821. ############################################## python3.9-3.9.1~rc1/Lib/smtplib.py-149- """ python3.9-3.9.1~rc1/Lib/smtplib.py:150: displayname, addr = email.utils.parseaddr(addrstring) python3.9-3.9.1~rc1/Lib/smtplib.py-151- if (displayname, addr) == ('', ''): ############################################## python3.9-3.9.1~rc1/Lib/smtplib.py-158-def _addr_only(addrstring): python3.9-3.9.1~rc1/Lib/smtplib.py:159: displayname, addr = email.utils.parseaddr(addrstring) python3.9-3.9.1~rc1/Lib/smtplib.py-160- if (displayname, addr) == ('', ''): ############################################## python3.9-3.9.1~rc1/Lib/smtplib.py-537- optionlist = ' ' + ' '.join(options) python3.9-3.9.1~rc1/Lib/smtplib.py:538: self.putcmd("mail", "FROM:%s%s" % (quoteaddr(sender), optionlist)) python3.9-3.9.1~rc1/Lib/smtplib.py-539- return self.getreply() ############################################## python3.9-3.9.1~rc1/Lib/smtplib.py-545- optionlist = ' ' + ' '.join(options) python3.9-3.9.1~rc1/Lib/smtplib.py:546: self.putcmd("rcpt", "TO:%s%s" % (quoteaddr(recip), optionlist)) python3.9-3.9.1~rc1/Lib/smtplib.py-547- return self.getreply() ############################################## python3.9-3.9.1~rc1/Lib/distutils/sysconfig.py-353- v = v.strip() python3.9-3.9.1~rc1/Lib/distutils/sysconfig.py:354: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/Lib/distutils/sysconfig.py-355- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-471- self.create_socket(family) python3.9-3.9.1~rc1/Lib/test/test_asyncore.py:472: self.set_reuse_addr() python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-473- bind_af_aware(self.socket, addr) ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-747- python3.9-3.9.1~rc1/Lib/test/test_asyncore.py:748: def test_set_reuse_addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-749- if HAS_UNIX_SOCKETS and self.family == socket.AF_UNIX: ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-764- s.create_socket(self.family) python3.9-3.9.1~rc1/Lib/test/test_asyncore.py:765: s.set_reuse_addr() python3.9-3.9.1~rc1/Lib/test/test_asyncore.py-766- self.assertTrue(s.socket.getsockopt(socket.SOL_SOCKET, ############################################## python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-90- python3.9-3.9.1~rc1/Lib/test/test_socketserver.py:91: def pickaddr(self, proto): python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-92- if proto == socket.AF_INET: ############################################## python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-124- def run_server(self, svrcls, hdlrbase, testfunc): python3.9-3.9.1~rc1/Lib/test/test_socketserver.py:125: server = self.make_server(self.pickaddr(svrcls.address_family), python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-126- svrcls, hdlrbase) ############################################## python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-170- if HAVE_UNIX_SOCKETS and proto == socket.AF_UNIX: python3.9-3.9.1~rc1/Lib/test/test_socketserver.py:171: s.bind(self.pickaddr(proto)) python3.9-3.9.1~rc1/Lib/test/test_socketserver.py-172- s.sendto(TEST_STR, addr) ############################################## python3.9-3.9.1~rc1/Lib/test/test_grammar.py-326- def test_var_annot_basic_semantics(self): python3.9-3.9.1~rc1/Lib/test/test_grammar.py:327: # execution order python3.9-3.9.1~rc1/Lib/test/test_grammar.py-328- with self.assertRaises(ZeroDivisionError): ############################################## python3.9-3.9.1~rc1/Lib/test/test_json/test_encode_basestring_ascii.py-6-CASES = [ python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Lib/test/test_json/test_encode_basestring_ascii.py-8- ('\u0123\u4567\u89ab\ucdef\uabcd\uef4a', '"\\u0123\\u4567\\u89ab\\ucdef\\uabcd\\uef4a"'), ############################################## python3.9-3.9.1~rc1/Lib/test/test_json/test_encode_basestring_ascii.py-14- ('\u03b1\u03a9', '"\\u03b1\\u03a9"'), python3.9-3.9.1~rc1/Lib/test/test_json/test_encode_basestring_ascii.py:15: ("`1~!@#$%^&*()_+-={':[,]}|;.</>?", '"`1~!@#$%^&*()_+-={\':[,]}|;.</>?"'), python3.9-3.9.1~rc1/Lib/test/test_json/test_encode_basestring_ascii.py-16- ('\x08\x0c\n\r\t', '"\\b\\f\\n\\r\\t"'), ############################################## python3.9-3.9.1~rc1/Lib/test/test_bz2.py-61- TEXT = b''.join(TEXT_LINES) python3.9-3.9.1~rc1/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.9-3.9.1~rc1/Lib/test/test_bz2.py-63- EMPTY_DATA = b'BZh9\x17rE8P\x90\x00\x00\x00\x00' ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1650- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1651: parser.get_angle_addr('(foo) ') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1652- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1654- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1655: parser.get_angle_addr('(foo) , next') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1656- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1658- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1659: parser.get_angle_addr('bar') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1660- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1662- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1663: parser.get_angle_addr('(foo) <, bar') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1664- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1835- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1836: parser.get_name_addr(' (foo) ') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1837- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1839- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1840: parser.get_name_addr(' (foo) ,') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1841- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1843- with self.assertRaises(errors.HeaderParseError): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1844: parser.get_name_addr('foo bar') python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1845- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1875- python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1876: def test_get_mailbox_name_addr(self): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1877- mailbox = self._test_get_x(parser.get_mailbox, ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1916- python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1917: def test_get_mailbox_list_single_addr(self): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1918- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1934- python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1935: def test_get_mailbox_list_two_simple_addr(self): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1936- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1950- python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py:1951: def test_get_mailbox_list_two_name_addr(self): python3.9-3.9.1~rc1/Lib/test/test_email/test__header_value_parser.py-1952- mailbox_list = self._test_get_x(parser.get_mailbox_list, ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3075- def test_parseaddr_empty(self): python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3076: self.assertEqual(utils.parseaddr('<>'), ('', '')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3077: self.assertEqual(utils.formataddr(utils.parseaddr('<>')), '') python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3078- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3080- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3081: utils.parseaddr('a@b@c'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3082- ('', '') ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3084- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3085: utils.parseaddr('a@b.c@c'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3086- ('', '') ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3088- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3089: utils.parseaddr('a@172.17.0.1@c'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3090- ('', '') ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3094- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3095: utils.formataddr(('A Silly Person', 'person@dom.ain')), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3096- 'A Silly Person <person@dom.ain>') ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3099- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3100: utils.formataddr(('A (Very) Silly Person', 'person@dom.ain')), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3101- r'"A (Very) Silly Person" <person@dom.ain>') python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3102- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3103: utils.parseaddr(r'"A \(Very\) Silly Person" <person@dom.ain>'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3104- ('A (Very) Silly Person', 'person@dom.ain')) ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3106- b = 'person@dom.ain' python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3107: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3108- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3110- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3111: utils.formataddr((r'Arthur \Backslash\ Foobar', 'person@dom.ain')), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3112- r'"Arthur \\Backslash\\ Foobar" <person@dom.ain>') ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3114- b = 'person@dom.ain' python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3115: self.assertEqual(utils.parseaddr(utils.formataddr((a, b))), (a, b)) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3116- python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3117- def test_quotes_unicode_names(self): python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3118: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3119- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3122- latin1_quopri = "=?iso-8859-1?q?H=E4ns_W=FCrst?= <person@dom.ain>" python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3123: self.assertEqual(utils.formataddr((name, addr)), utf8_base64) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3124: self.assertEqual(utils.formataddr((name, addr), 'iso-8859-1'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3125- latin1_quopri) ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3127- def test_accepts_any_charset_like_object(self): python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3128: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3129- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3137- mock_expected = "%s <%s>" % (foobar, addr) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3138: self.assertEqual(utils.formataddr((name, addr), mock), mock_expected) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3139: self.assertEqual(utils.formataddr((name, addr), Charset('utf-8')), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3140- utf8_base64) ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3142- def test_invalid_charset_like_object_raises_error(self): python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3143: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3144- name = "H\u00e4ns W\u00fcrst" ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3151- def test_unicode_address_raises_error(self): python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3152: # issue 1690608. email.utils.formataddr() should be rfc2047 aware. python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3153- addr = 'pers\u00f6n@dom.in' ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3160- a, b = ('John X. Doe', 'jxd@example.com') python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3161: self.assertEqual(utils.parseaddr(x), (a, b)) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3162: self.assertEqual(utils.parseaddr(y), (a, b)) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3163: # formataddr() quotes the name if there's a dot in it python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3164: self.assertEqual(utils.formataddr((a, b)), y) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3165- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3176- eq = self.assertEqual python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3177: eq(utils.parseaddr('""example" example"@example.com'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3178- ('', '""example" example"@example.com')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3179: eq(utils.parseaddr('"\\"example\\" example"@example.com'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3180- ('', '"\\"example\\" example"@example.com')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3181: eq(utils.parseaddr('"\\\\"example\\\\" example"@example.com'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3182- ('', '"\\\\"example\\\\" example"@example.com')) ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3191- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3192: utils.parseaddr("merwok wok@xample.com")) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3193- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3194: utils.parseaddr("merwok wok@xample.com")) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3195- self.assertEqual(('', "merwok wok@xample.com"), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3196: utils.parseaddr(" merwok wok @xample.com")) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3197- self.assertEqual(('', 'merwok"wok" wok@xample.com'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3198: utils.parseaddr('merwok"wok" wok@xample.com')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3199- self.assertEqual(('', 'merwok.wok.wok@xample.com'), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3200: utils.parseaddr('merwok. wok . wok@xample.com')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3201- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3206- '(foo@example.com)" <foo@example.com>') python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3207: self.assertEqual(utils.parseaddr(addrstr), addr) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3208: self.assertEqual(utils.formataddr(addr), addrstr) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3209- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3214-\tBar <foo@example.com>""" python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3215: self.assertEqual(utils.parseaddr(x), ('Foo Bar', 'foo@example.com')) python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3216- ############################################## python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3218- self.assertEqual( python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py:3219: utils.formataddr(('A Silly; Person', 'person@dom.ain')), python3.9-3.9.1~rc1/Lib/test/test_email/test_email.py-3220- r'"A Silly; Person" <person@dom.ain>') ############################################## python3.9-3.9.1~rc1/Lib/test/test_importlib/test_abc.py-627- python3.9-3.9.1~rc1/Lib/test/test_importlib/test_abc.py:628:##### ExecutionLoader concrete methods ######################################### python3.9-3.9.1~rc1/Lib/test/test_importlib/test_abc.py-629-class ExecutionLoaderGetCodeTests: ############################################## python3.9-3.9.1~rc1/Lib/test/test_set.py-13- python3.9-3.9.1~rc1/Lib/test/test_set.py:14:class PassThru(Exception): python3.9-3.9.1~rc1/Lib/test/test_set.py-15- pass ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_events.py-639- python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_events.py:640: def test_create_connection_local_addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_events.py-641- with test_utils.run_test_server() as httpd: ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1236- @patch_socket python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1237: def test_create_connection_multiple_errors_local_addr(self, m_socket): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1238- ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1266- python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1267: def _test_create_connection_ip_addr(self, m_socket, allow_inet_pton): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1268- # Test the fallback code, even if this system has inet_pton. ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1335- @patch_socket python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1336: def test_create_connection_ip_addr(self, m_socket): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1337: self._test_create_connection_ip_addr(m_socket, True) python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1338- ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1340- def test_create_connection_no_inet_pton(self, m_socket): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1341: self._test_create_connection_ip_addr(m_socket, False) python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1342- ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1373- python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1374: def test_create_connection_no_local_addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1375- async def getaddrinfo(host, *args, **kw): ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1834- @patch_socket python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py:1835: def test_create_datagram_endpoint_ip_addr(self, m_socket): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_base_events.py-1836- def getaddrinfo(*args, **kw): ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_proactor_events.py-614- python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_proactor_events.py:615: def test_sendto_connected_addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_proactor_events.py-616- transport = self.datagram_transport(address=('0.0.0.0', 1)) ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/functional.py-272- @property python3.9-3.9.1~rc1/Lib/test/test_asyncio/functional.py:273: def addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncio/functional.py-274- return self._sock.getsockname() ############################################## python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_selector_events.py-1257- python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_selector_events.py:1258: def test_sendto_connected_addr(self): python3.9-3.9.1~rc1/Lib/test/test_asyncio/test_selector_events.py-1259- transport = self.datagram_transport(address=('0.0.0.0', 1)) ############################################## python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-874- if arg in sim_users: python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:875: self.push('250 %s %s' % (sim_users[arg], smtplib.quoteaddr(arg))) python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-876- else: ############################################## python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-883- for n, user_email in enumerate(user_list): python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:884: quoted_addr = smtplib.quoteaddr(user_email) python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-885- if n < len(user_list) - 1: ############################################## python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1019- expected_known = (250, bytes('%s %s' % python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:1020: (name, smtplib.quoteaddr(addr_spec)), python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1021- "ascii")) ############################################## python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1035- for m in members: python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:1036: users.append('%s %s' % (sim_users[m], smtplib.quoteaddr(m))) python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1037- expected_known = (250, bytes('\n'.join(users), "ascii")) ############################################## python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1230- message = EmailMessage() python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:1231: message['From'] = email.utils.formataddr(('Michaël', 'michael@example.com')) python3.9-3.9.1~rc1/Lib/test/test_smtplib.py:1232: message['To'] = email.utils.formataddr(('René', 'rene@example.com')) python3.9-3.9.1~rc1/Lib/test/test_smtplib.py-1233- ############################################## python3.9-3.9.1~rc1/Lib/test/test_os.py-859- os.environ.update(HELLO="World") python3.9-3.9.1~rc1/Lib/test/test_os.py:860: with os.popen("%s -c 'echo $HELLO'" % unix_shell) as popen: python3.9-3.9.1~rc1/Lib/test/test_os.py-861- value = popen.read().strip() ############################################## python3.9-3.9.1~rc1/Lib/test/test_os.py-1034- python3.9-3.9.1~rc1/Lib/test/test_os.py:1035: with os.popen(f"{unix_shell} -c 'echo ${var}'") as popen: python3.9-3.9.1~rc1/Lib/test/test_os.py-1036- value = popen.read().strip() ############################################## python3.9-3.9.1~rc1/Lib/test/test_binascii.py-177- self.assertEqual(binascii.b2a_uu(b'\x00Cat', backtick=True), python3.9-3.9.1~rc1/Lib/test/test_binascii.py:178: b'$`$-A=```\n') python3.9-3.9.1~rc1/Lib/test/test_binascii.py:179: self.assertEqual(binascii.a2b_uu(b'$`$-A=```\n'), python3.9-3.9.1~rc1/Lib/test/test_binascii.py-180- binascii.a2b_uu(b'$ $-A= \n')) ############################################## python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-117- "FQ^5<D+|jLr?k{O39i8AX2Qb^zi9A<7XD1y!-W2|0Hk8JVkN;gl><|<0R-u4qYMbRqzSn&", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json:118: "Q7jSuvc%b+EZc%>nI(+&0Tl1Y>a6v4`uNFD-7$QrhHgS7Wnv~rDgfH;rQw3+m`LJxoM4v#", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-119- "gK@?|B{RHJ*VxZgk#!p<_&-sjxOda0YaiJ1UnG41VPv(Et%ElzKRMcO$AfgU+Xnwg5p2_+", ############################################## python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-134- "Z;j$7gJ1ows~RD=@n7I6aFd8rOR_7Y?E-$clI%1o5gA@O!KPa^(8^iFFeFykI-+z>E$mvp", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json:135: "E_h`vbHPjqkLs`Dn-0FV`R@z|h!S(Lb;M&|Exr<u8#s-T(>!biY`%bfp$6`hK;GDhdP|^Q", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json:136: "*Ty*}1d41K>H2B{jrjE9aFK>yAQJBX9CD%-384S;0fw`PlprHGS`^b$oS-`I4VH7ji8ou-", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-137- "g|060jfb1XcxiInT0oO<S+<vh^)XY;lr@|IeXj}%k;}|kSlDGaYidk^zB|gEYaet~F%QYd", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-138- "f7pbnQKLZ0o7=kso86doS;J@aQ>oeR7#%e5Ug5#KW)nV<Rc;|LjUDdhk8*dYJQwYN?hzH%", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json:139: "0<XB$!(rpf2nxaL22M`L4pKx>SRvLHNe$SQHM@2)`S9L7>RL@<XAlxVQfb2=%lcu!h+Um0", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-140- "Q+Z=itevTFy}-Jl<g5crK55BF`VsoPH~qP3QrG%YtrD#s{=gA7p)QI<i=EwY(cel8`B=#u", ############################################## python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-145- "_`30=8sfA3=!3TO_TyS5X22~?6nKngZ|bq=grdq=9X)3xAkA42L!~rmS)n3w-~;lgz%Fhn", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json:146: "(?rXdp2ho~9?wmVs2JwVt~?@FVD%`tN69{(i3oQa;O0<Hp#T5?$WIy3h`IlL00Hv}jT-;}", python3.9-3.9.1~rc1/Lib/test/test_zoneinfo/data/zoneinfo_data.json-147- "Z2tpNvBYQl0ssI200dcD" ############################################## python3.9-3.9.1~rc1/Lib/test/test_descr.py-4133- # A badly placed Py_DECREF in type_set_name led to arbitrary code python3.9-3.9.1~rc1/Lib/test/test_descr.py:4134: # execution while the type structure was not in a sane state, and a python3.9-3.9.1~rc1/Lib/test/test_descr.py-4135- # possible segmentation fault as a result. See bug #16447. ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-1002- try: python3.9-3.9.1~rc1/Lib/test/test_socket.py:1003: hname, aliases, ipaddrs = socket.gethostbyaddr(ip) python3.9-3.9.1~rc1/Lib/test/test_socket.py-1004- except OSError: ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-1018- for host in [socket_helper.HOSTv4]: python3.9-3.9.1~rc1/Lib/test/test_socket.py:1019: self.assertIn(host, socket.gethostbyaddr(host)[2]) python3.9-3.9.1~rc1/Lib/test/test_socket.py-1020- ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-1033- with self.assertRaises(OSError, msg=explanation): python3.9-3.9.1~rc1/Lib/test/test_socket.py:1034: socket.gethostbyaddr(addr) python3.9-3.9.1~rc1/Lib/test/test_socket.py-1035- ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-1588- # have a reverse entry yet python3.9-3.9.1~rc1/Lib/test/test_socket.py:1589: # socket.gethostbyaddr('испытание.python.org') python3.9-3.9.1~rc1/Lib/test/test_socket.py-1590- ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-2950- python3.9-3.9.1~rc1/Lib/test/test_socket.py:2951: def testSendmsgExplicitNoneAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-2952- # Check that peer address can be specified as None. ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-2954- python3.9-3.9.1~rc1/Lib/test/test_socket.py:2955: def _testSendmsgExplicitNoneAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-2956- self.assertEqual(self.sendmsgToServer([MSG], [], 0, None), len(MSG)) ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-3012- python3.9-3.9.1~rc1/Lib/test/test_socket.py:3013: def testSendmsgNoDestAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-3014- # Check that sendmsg() fails when no destination address is ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-3017- python3.9-3.9.1~rc1/Lib/test/test_socket.py:3018: def _testSendmsgNoDestAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-3019- self.assertRaises(OSError, self.cli_sock.sendmsg, ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-5459- python3.9-3.9.1~rc1/Lib/test/test_socket.py:5460: def testStrAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-5461- # Test binding to and retrieving a normal string pathname. ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-5466- python3.9-3.9.1~rc1/Lib/test/test_socket.py:5467: def testBytesAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-5468- # Test binding to a bytes pathname. ############################################## python3.9-3.9.1~rc1/Lib/test/test_socket.py-5482- python3.9-3.9.1~rc1/Lib/test/test_socket.py:5483: def testUnencodableAddr(self): python3.9-3.9.1~rc1/Lib/test/test_socket.py-5484- # Test binding to a pathname that cannot be encoded in the ############################################## python3.9-3.9.1~rc1/Lib/asyncore.py-290- python3.9-3.9.1~rc1/Lib/asyncore.py:291: def set_reuse_addr(self): python3.9-3.9.1~rc1/Lib/asyncore.py-292- # try to re-use a server port if possible ############################################## python3.9-3.9.1~rc1/Lib/socket.py-19-gethostbyname() -- map a hostname to its IP number python3.9-3.9.1~rc1/Lib/socket.py:20:gethostbyaddr() -- map an IP number or hostname to DNS info python3.9-3.9.1~rc1/Lib/socket.py-21-getservbyname() -- map a service name and a protocol name to a port number ############################################## python3.9-3.9.1~rc1/Lib/socket.py-782- python3.9-3.9.1~rc1/Lib/socket.py:783: First the hostname returned by gethostbyaddr() is checked, then python3.9-3.9.1~rc1/Lib/socket.py-784- possibly existing aliases. In case no FQDN is available, hostname ############################################## python3.9-3.9.1~rc1/Lib/socket.py-790- try: python3.9-3.9.1~rc1/Lib/socket.py:791: hostname, aliases, ipaddrs = gethostbyaddr(name) python3.9-3.9.1~rc1/Lib/socket.py-792- except error: ############################################## python3.9-3.9.1~rc1/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.1~rc1/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/m4/ax_check_openssl.m4-55- if test x"$PKG_CONFIG" != x""; then python3.9-3.9.1~rc1/m4/ax_check_openssl.m4:56: OPENSSL_LDFLAGS=`$PKG_CONFIG openssl --libs-only-L 2>/dev/null` python3.9-3.9.1~rc1/m4/ax_check_openssl.m4-57- if test $? = 0; then python3.9-3.9.1~rc1/m4/ax_check_openssl.m4:58: OPENSSL_LIBS=`$PKG_CONFIG openssl --libs-only-l 2>/dev/null` python3.9-3.9.1~rc1/m4/ax_check_openssl.m4:59: OPENSSL_INCLUDES=`$PKG_CONFIG openssl --cflags-only-I 2>/dev/null` python3.9-3.9.1~rc1/m4/ax_check_openssl.m4-60- found=true ############################################## python3.9-3.9.1~rc1/Objects/memoryobject.c-210- python3.9-3.9.1~rc1/Objects/memoryobject.c:211:#define VIEW_ADDR(mv) (&((PyMemoryViewObject *)mv)->view) python3.9-3.9.1~rc1/Objects/memoryobject.c-212- ############################################## python3.9-3.9.1~rc1/Objects/memoryobject.c-2141- static char *kwlist[] = {"order", NULL}; python3.9-3.9.1~rc1/Objects/memoryobject.c:2142: Py_buffer *src = VIEW_ADDR(self); python3.9-3.9.1~rc1/Objects/memoryobject.c-2143- char *order = NULL; ############################################## python3.9-3.9.1~rc1/Objects/memoryobject.c-2206-{ python3.9-3.9.1~rc1/Objects/memoryobject.c:2207: Py_buffer *src = VIEW_ADDR(self); python3.9-3.9.1~rc1/Objects/memoryobject.c-2208- PyObject *bytes; ############################################## python3.9-3.9.1~rc1/Objects/memoryobject.c-2820- } python3.9-3.9.1~rc1/Objects/memoryobject.c:2821: vv = VIEW_ADDR(v); python3.9-3.9.1~rc1/Objects/memoryobject.c-2822- ############################################## python3.9-3.9.1~rc1/Objects/memoryobject.c-2827- } python3.9-3.9.1~rc1/Objects/memoryobject.c:2828: ww = VIEW_ADDR(w); python3.9-3.9.1~rc1/Objects/memoryobject.c-2829- } ############################################## python3.9-3.9.1~rc1/Objects/obmalloc.c-880- * have to be. In theory, if SYSTEM_PAGE_SIZE is larger than the native page python3.9-3.9.1~rc1/Objects/obmalloc.c:881: * size, then `POOL_ADDR(p)->arenaindex' could rarely cause a segmentation python3.9-3.9.1~rc1/Objects/obmalloc.c-882- * violation fault. 4K is apparently OK for all the platforms that python ############################################## python3.9-3.9.1~rc1/Objects/obmalloc.c-997-/* Round pointer P down to the closest pool-aligned address <= P, as a poolp */ python3.9-3.9.1~rc1/Objects/obmalloc.c:998:#define POOL_ADDR(P) ((poolp)_Py_ALIGN_DOWN((P), POOL_SIZE)) python3.9-3.9.1~rc1/Objects/obmalloc.c-999- ############################################## python3.9-3.9.1~rc1/Objects/obmalloc.c-1338-Return true if and only if P is an address that was allocated by pymalloc. python3.9-3.9.1~rc1/Objects/obmalloc.c:1339:POOL must be the pool address associated with P, i.e., POOL = POOL_ADDR(P) python3.9-3.9.1~rc1/Objects/obmalloc.c-1340-(the caller is asked to compute this because the macro expands POOL more than python3.9-3.9.1~rc1/Objects/obmalloc.c:1341:once, and for efficiency it's best for the caller to assign POOL_ADDR(P) to a python3.9-3.9.1~rc1/Objects/obmalloc.c-1342-variable and pass the latter to the macro; because address_in_range is ############################################## python3.9-3.9.1~rc1/Objects/obmalloc.c-1864- python3.9-3.9.1~rc1/Objects/obmalloc.c:1865: poolp pool = POOL_ADDR(p); python3.9-3.9.1~rc1/Objects/obmalloc.c-1866- if (UNLIKELY(!address_in_range(p, pool))) { ############################################## python3.9-3.9.1~rc1/Objects/obmalloc.c-1952- python3.9-3.9.1~rc1/Objects/obmalloc.c:1953: pool = POOL_ADDR(p); python3.9-3.9.1~rc1/Objects/obmalloc.c-1954- if (!address_in_range(p, pool)) { ############################################## python3.9-3.9.1~rc1/debian/dh_doclink-2- python3.9-3.9.1~rc1/debian/dh_doclink:3:pkg=`echo $1 | sed 's/^-p//'` python3.9-3.9.1~rc1/debian/dh_doclink-4-target=$2 ############################################## python3.9-3.9.1~rc1/debian/dh_doclink-8-f=debian/$pkg.postinst.debhelper python3.9-3.9.1~rc1/debian/dh_doclink:9:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then python3.9-3.9.1~rc1/debian/dh_doclink-10-cat >> $f <<EOF ############################################## python3.9-3.9.1~rc1/debian/dh_doclink-20-f=debian/$pkg.prerm.debhelper python3.9-3.9.1~rc1/debian/dh_doclink:21:if [ ! -e $f ] || [ "`grep -c '^# dh_doclink' $f`" -eq 0 ]; then python3.9-3.9.1~rc1/debian/dh_doclink-22-cat >> $f <<EOF ############################################## python3.9-3.9.1~rc1/debian/locale-gen-13- [ -n "$locale" -a -n "$charset" ] || continue python3.9-3.9.1~rc1/debian/locale-gen:14: echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`" python3.9-3.9.1~rc1/debian/locale-gen-15- echo -n ".$charset" python3.9-3.9.1~rc1/debian/locale-gen:16: echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'` python3.9-3.9.1~rc1/debian/locale-gen-17- echo -n '...' ############################################## python3.9-3.9.1~rc1/debian/locale-gen-20- else python3.9-3.9.1~rc1/debian/locale-gen:21: input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'` python3.9-3.9.1~rc1/debian/locale-gen-22- fi ############################################## python3.9-3.9.1~rc1/debian/patches/link-opt.diff-13- FreeBSD*) python3.9-3.9.1~rc1/debian/patches/link-opt.diff:14: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/debian/patches/link-opt.diff-15- then ############################################## python3.9-3.9.1~rc1/debian/patches/reproducible-buildinfo.diff-5-@@ -785,6 +785,8 @@ Modules/getbuildinfo.o: $(PARSER_OBJS) \ python3.9-3.9.1~rc1/debian/patches/reproducible-buildinfo.diff:6: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/debian/patches/reproducible-buildinfo.diff:7: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/debian/patches/reproducible-buildinfo.diff:8: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/debian/patches/reproducible-buildinfo.diff-9-+ $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.1~rc1/debian/rules-779- for f in debian/*.in; do \ python3.9-3.9.1~rc1/debian/rules:780: f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \ python3.9-3.9.1~rc1/debian/rules-781- if [ $$f2 != debian/control ] && [ $$f2 != debian/source.lintian-overrides ]; then \ ############################################## python3.9-3.9.1~rc1/debian/rules-791- for f in debian/*.in; do \ python3.9-3.9.1~rc1/debian/rules:792: f2=`echo $$f | sed "s,PVER,$(PVER),g;s/@VER@/$(VER)/g;s,\.in$$,,"`; \ python3.9-3.9.1~rc1/debian/rules-793- if [ $$f2 != debian/control ]; then \ ############################################## python3.9-3.9.1~rc1/debian/rules-1108- [ -d debian/$$p ] || continue; \ python3.9-3.9.1~rc1/debian/rules:1109: for i in `find debian/$$p -type f`; do \ python3.9-3.9.1~rc1/debian/rules-1110- sed '1s,#!.*python[^ ]*\(.*\),#! $(PY_INTERPRETER)\1,' \ ############################################## python3.9-3.9.1~rc1/debian/rules-1470- dh_shlibdeps -a python3.9-3.9.1~rc1/debian/rules:1471: dep=`sed -n '/^shlibs:Depends/s/[^=]*=\(.*\)/\1/p' $(d_min).substvars | awk -v RS=', ' -v ORS=', ' '/^libc6/ { print }'`; \ python3.9-3.9.1~rc1/debian/rules-1472- echo "shlibs:Pre-Depends=$$dep" >> $(d_min).substvars ############################################## python3.9-3.9.1~rc1/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-327- v = v.strip() python3.9-3.9.1~rc1/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py:328: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/distutils-install-layout.diff/Lib/distutils/sysconfig.py-329- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-334- v = v.strip() python3.9-3.9.1~rc1/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py:335: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/distutils-sysconfig.diff/Lib/distutils/sysconfig.py-336- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-94-fi ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-207- then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-209- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-630- then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-632- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1069-fi python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1347- then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-1774- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2666- FreeBSD*) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:2667: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2668- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2674- OpenBSD*) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:2675: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2676- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2778- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:2779: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-2780- then ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-3100-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:3101: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-3102-else ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-3177-else python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:3178: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-3179- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-4772-AC_MSG_CHECKING(SOABI) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:4773:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-4774-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-4779- AC_SUBST(ALT_SOABI) python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:4780: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-4781- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-5467- python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:5468:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-5469-do ############################################## python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-5539- int r; python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac:5540: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.1~rc1/.pc/link-opt.diff/configure.ac-5541- "xorl %0, %0\n\t" ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-625-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:626: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-627- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-774- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:775: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:776: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:777: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-778- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1272- if test $$i != X; then \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:1273: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:1274: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1275- fi; \ ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1502- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:1503: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1504- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1657- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:1658: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1659- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1715- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in:1716: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/.pc/profiled-build.diff/Makefile.pre.in-1717- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-94-fi ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-207- then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-209- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-630- then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-632- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1069-fi python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1347- then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-1774- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2666- FreeBSD*) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:2667: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2668- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2674- OpenBSD*) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:2675: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2676- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2778- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:2779: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-2780- then ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-3100-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:3101: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-3102-else ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-3177-else python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:3178: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-3179- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-4772-AC_MSG_CHECKING(SOABI) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:4773:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-4774-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-4779- AC_SUBST(ALT_SOABI) python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:4780: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-4781- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-5467- python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:5468:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-5469-do ############################################## python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-5539- int r; python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac:5540: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.1~rc1/.pc/disable-sem-check.diff/configure.ac-5541- "xorl %0, %0\n\t" ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/distutils/sysconfig.py-345- v = v.strip() python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/distutils/sysconfig.py:346: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/multiarch.diff/Lib/distutils/sysconfig.py-347- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-788- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1282- if test $$i != X; then \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:1283: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:1284: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1285- fi; \ ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1512- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:1513: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1514- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1667- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:1668: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1669- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1725- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in:1726: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/.pc/multiarch.diff/Makefile.pre.in-1727- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-348- v = v.strip() python3.9-3.9.1~rc1/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py:349: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/mangle-fstack-protector.diff/Lib/distutils/sysconfig.py-350- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-788- -o $@ $(srcdir)/Modules/getbuildinfo.c ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1283- if test $$i != X; then \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1284: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1285: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1286- fi; \ ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1513- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1514: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1515- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1668- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1669: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1670- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1726- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in:1727: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/.pc/reproducible-buildinfo.diff/Makefile.pre.in-1728- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-635-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:636: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-637- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-784- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:785: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:786: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:787: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-788- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1285- if test $$i != X; then \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:1286: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:1287: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1288- fi; \ ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1515- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:1516: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1517- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1670- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:1671: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1672- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1728- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in:1729: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/.pc/build-math-object.diff/Makefile.pre.in-1730- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-235- v = v.strip() python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/sysconfig.py:236: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/sysconfig.py-237- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-353- v = v.strip() python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py:354: # `$$' is a literal `$' in make python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Lib/distutils/sysconfig.py-355- tmpv = v.replace('$$', '') ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-637-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:638: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-639- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-786- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:787: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:788: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:789: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-790- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1287- if test $$i != X; then \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:1288: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:1289: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1290- fi; \ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1517- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:1518: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1519- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1672- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:1673: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1674- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1730- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in:1731: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/Makefile.pre.in-1732- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-94-fi ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-207- then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-209- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-243- ],[ ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-307- */Library/Frameworks) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-630- then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-632- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1069-fi python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1347- then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-1774- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2666- FreeBSD*) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:2667: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2668- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2674- OpenBSD*) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:2675: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2676- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2778- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:2779: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-2780- then ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-3100-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:3101: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-3102-else ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-3177-else python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:3178: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-3179- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-4782-AC_MSG_CHECKING(SOABI) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:4783:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-4784-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-4789- AC_SUBST(ALT_SOABI) python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:4790: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-4791- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-5477- python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:5478:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-5479-do ############################################## python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-5549- int r; python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac:5550: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.1~rc1/.pc/sysconfigdata-name.diff/configure.ac-5551- "xorl %0, %0\n\t" ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-637-sharedmods: $(BUILDPYTHON) pybuilddir.txt Modules/_math.o python3.9-3.9.1~rc1/Makefile.pre.in:638: @case "`echo X $$MAKEFLAGS | sed 's/^X //;s/ -- .*//'`" in \ python3.9-3.9.1~rc1/Makefile.pre.in-639- *\ -s*|s*) quiet="-q";; \ ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-786- $(CC) -c $(PY_CORE_CFLAGS) \ python3.9-3.9.1~rc1/Makefile.pre.in:787: -DGITVERSION="\"`LC_ALL=C $(GITVERSION)`\"" \ python3.9-3.9.1~rc1/Makefile.pre.in:788: -DGITTAG="\"`LC_ALL=C $(GITTAG)`\"" \ python3.9-3.9.1~rc1/Makefile.pre.in:789: -DGITBRANCH="\"`LC_ALL=C $(GITBRANCH)`\"" \ python3.9-3.9.1~rc1/Makefile.pre.in-790- $(if $(BUILD_DATE),-DDATE='"$(BUILD_DATE)"') \ ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-1287- if test $$i != X; then \ python3.9-3.9.1~rc1/Makefile.pre.in:1288: echo $(INSTALL_SHARED) $$i $(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/Makefile.pre.in:1289: $(INSTALL_SHARED) $$i $(DESTDIR)$(DESTSHARED)/`basename $$i`; \ python3.9-3.9.1~rc1/Makefile.pre.in-1290- fi; \ ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-1517- if test ! -d $$a; then continue; else true; fi; \ python3.9-3.9.1~rc1/Makefile.pre.in:1518: if test `ls $$a | wc -l` -lt 1; then continue; fi; \ python3.9-3.9.1~rc1/Makefile.pre.in-1519- b=$(LIBDEST)/$$d; \ ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-1674- @if [ -s Modules/python.exp -a \ python3.9-3.9.1~rc1/Makefile.pre.in:1675: "`echo $(MACHDEP) | sed 's/^\(...\).*/\1/'`" = "aix" ]; then \ python3.9-3.9.1~rc1/Makefile.pre.in-1676- echo; echo "Installing support files for building shared extension modules on AIX:"; \ ############################################## python3.9-3.9.1~rc1/Makefile.pre.in-1733- $(LN) -fsn include/python$(LDVERSION) $(DESTDIR)$(prefix)/Headers python3.9-3.9.1~rc1/Makefile.pre.in:1734: sed 's/%VERSION%/'"`$(RUNSHARED) ./$(BUILDPYTHON) -c 'import platform; print(platform.python_version())'`"'/g' < $(RESSRCDIR)/Info.plist > $(DESTDIR)$(prefix)/Resources/Info.plist python3.9-3.9.1~rc1/Makefile.pre.in-1735- $(LN) -fsn $(VERSION) $(DESTDIR)$(PYTHONFRAMEWORKINSTALLDIR)/Versions/Current ############################################## python3.9-3.9.1~rc1/configure.ac-92-if test "$prefix" != "/"; then python3.9-3.9.1~rc1/configure.ac:93: prefix=`echo "$prefix" | sed -e 's/\/$//g'` python3.9-3.9.1~rc1/configure.ac-94-fi ############################################## python3.9-3.9.1~rc1/configure.ac-207- then python3.9-3.9.1~rc1/configure.ac:208: if test -z "`/usr/bin/file -L "${UNIVERSALSDK}/usr/lib/libSystem.dylib" | grep ppc`" python3.9-3.9.1~rc1/configure.ac-209- then ############################################## python3.9-3.9.1~rc1/configure.ac-241- PYTHONFRAMEWORKDIR=${withval}.framework python3.9-3.9.1~rc1/configure.ac:242: PYTHONFRAMEWORKIDENTIFIER=org.python.`echo $withval | tr '[A-Z]' '[a-z]'` python3.9-3.9.1~rc1/configure.ac-243- ],[ ############################################## python3.9-3.9.1~rc1/configure.ac-307- */Library/Frameworks) python3.9-3.9.1~rc1/configure.ac:308: MDIR="`dirname "${enableval}"`" python3.9-3.9.1~rc1/configure.ac:309: MDIR="`dirname "${MDIR}"`" python3.9-3.9.1~rc1/configure.ac-310- FRAMEWORKINSTALLAPPSPREFIX="${MDIR}/Applications" ############################################## python3.9-3.9.1~rc1/configure.ac-630- then python3.9-3.9.1~rc1/configure.ac:631: if test -n "`"$found_gcc" --version | grep llvm-gcc`" python3.9-3.9.1~rc1/configure.ac-632- then ############################################## python3.9-3.9.1~rc1/configure.ac-871-if $CPP $CPPFLAGS conftest.c >conftest.out 2>/dev/null; then python3.9-3.9.1~rc1/configure.ac:872: PLATFORM_TRIPLET=`grep -v '^#' conftest.out | grep -v '^ *$' | tr -d ' '` python3.9-3.9.1~rc1/configure.ac-873- AC_MSG_RESULT([$PLATFORM_TRIPLET]) ############################################## python3.9-3.9.1~rc1/configure.ac-1067-if test "$GCC" = yes; then python3.9-3.9.1~rc1/configure.ac:1068: ac_prog=`$CC -print-prog-name=ld` python3.9-3.9.1~rc1/configure.ac-1069-fi python3.9-3.9.1~rc1/configure.ac:1070:case `"$ac_prog" -V 2>&1 < /dev/null` in python3.9-3.9.1~rc1/configure.ac-1071- *GNU*) ############################################## python3.9-3.9.1~rc1/configure.ac-1347- then python3.9-3.9.1~rc1/configure.ac:1348: clang_dir=`dirname "${clang_bin}"` python3.9-3.9.1~rc1/configure.ac:1349: clang_bin=`readlink "${clang_bin}"` python3.9-3.9.1~rc1/configure.ac:1350: llvm_bin_dir="${clang_dir}/"`dirname "${clang_bin}"` python3.9-3.9.1~rc1/configure.ac-1351- llvm_path="${llvm_path}${PATH_SEPARATOR}${llvm_bin_dir}" ############################################## python3.9-3.9.1~rc1/configure.ac-1772- test "$Py_DEBUG" != "true" && \ python3.9-3.9.1~rc1/configure.ac:1773: test -z "`$CC --version 2>/dev/null | grep 'Free Software Foundation'`" python3.9-3.9.1~rc1/configure.ac-1774- then ############################################## python3.9-3.9.1~rc1/configure.ac-2666- FreeBSD*) python3.9-3.9.1~rc1/configure.ac:2667: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/configure.ac-2668- then ############################################## python3.9-3.9.1~rc1/configure.ac-2674- OpenBSD*) python3.9-3.9.1~rc1/configure.ac:2675: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/configure.ac-2676- then ############################################## python3.9-3.9.1~rc1/configure.ac-2778- FreeBSD*|NetBSD*|OpenBSD*|DragonFly*) python3.9-3.9.1~rc1/configure.ac:2779: if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]] python3.9-3.9.1~rc1/configure.ac-2780- then ############################################## python3.9-3.9.1~rc1/configure.ac-3100-if test "$with_system_ffi" = "yes" && test -n "$PKG_CONFIG"; then python3.9-3.9.1~rc1/configure.ac:3101: LIBFFI_INCLUDEDIR="`"$PKG_CONFIG" libffi --cflags-only-I 2>/dev/null | sed -e 's/^-I//;s/ *$//'`" python3.9-3.9.1~rc1/configure.ac-3102-else ############################################## python3.9-3.9.1~rc1/configure.ac-3177-else python3.9-3.9.1~rc1/configure.ac:3178: for db in `echo $with_dbmliborder | sed 's/:/ /g'`; do python3.9-3.9.1~rc1/configure.ac-3179- if test x$db != xndbm && test x$db != xgdbm && test x$db != xbdb ############################################## python3.9-3.9.1~rc1/configure.ac-4782-AC_MSG_CHECKING(SOABI) python3.9-3.9.1~rc1/configure.ac:4783:SOABI='cpython-'`echo $VERSION | tr -d .`${ABIFLAGS}${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/configure.ac-4784-AC_MSG_RESULT($SOABI) ############################################## python3.9-3.9.1~rc1/configure.ac-4789- AC_SUBST(ALT_SOABI) python3.9-3.9.1~rc1/configure.ac:4790: ALT_SOABI='cpython-'`echo $VERSION | tr -d .``echo $ABIFLAGS | tr -d d`${PLATFORM_TRIPLET:+-$PLATFORM_TRIPLET} python3.9-3.9.1~rc1/configure.ac-4791- AC_DEFINE_UNQUOTED(ALT_SOABI, "${ALT_SOABI}", ############################################## python3.9-3.9.1~rc1/configure.ac-5477- python3.9-3.9.1~rc1/configure.ac:5478:for h in `(cd $srcdir;echo Python/thread_*.h)` python3.9-3.9.1~rc1/configure.ac-5479-do ############################################## python3.9-3.9.1~rc1/configure.ac-5549- int r; python3.9-3.9.1~rc1/configure.ac:5550: asm ( "movl \$6, (%1)\n\t" python3.9-3.9.1~rc1/configure.ac-5551- "xorl %0, %0\n\t"