Python 3.7 METH_FASTCALL backport (#406)

This commit is contained in:
Gautham 2022-05-13 17:35:12 +05:30 committed by GitHub
parent fec396037a
commit 83b743cf96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
103 changed files with 2949 additions and 3356 deletions

View file

@ -292,7 +292,7 @@ THIRD_PARTY_PYTHON_INCS = \
THIRD_PARTY_PYTHON_STAGE1_A_SRCS = \
third_party/python/Modules/_tracemalloc.c \
third_party/python/Modules/faulthandler.c \
third_party/python/Objects/abstract.c \
third_party/python/Objects/abstract.c \
third_party/python/Modules/fspath.c \
third_party/python/Modules/gcmodule.c \
third_party/python/Modules/getbuildinfo.c \
@ -304,6 +304,7 @@ THIRD_PARTY_PYTHON_STAGE1_A_SRCS = \
third_party/python/Objects/bytes_methods.c \
third_party/python/Objects/bytesobject.c \
third_party/python/Objects/capsule.c \
third_party/python/Objects/call.c \
third_party/python/Objects/cellobject.c \
third_party/python/Objects/classobject.c \
third_party/python/Objects/codeobject.c \
@ -1378,6 +1379,7 @@ THIRD_PARTY_PYTHON_PYTEST_A_DATA = \
third_party/python/Lib/test/test_email/data/msg_13.txt \
third_party/python/Lib/test/test_email/data/msg_26.txt \
third_party/python/Lib/test/test_email/data/msg_10.txt \
third_party/python/Lib/test/sndhdrdata/ \
third_party/python/Lib/test/sndhdrdata/sndhdr.hcom \
third_party/python/Lib/test/sndhdrdata/sndhdr.wav \
third_party/python/Lib/test/sndhdrdata/sndhdr.au \
@ -1390,6 +1392,9 @@ THIRD_PARTY_PYTHON_PYTEST_A_DATA = \
third_party/python/Lib/test/allsans.pem \
third_party/python/Lib/test/nullcert.pem \
third_party/python/Lib/test/test_doctest.txt \
third_party/python/Lib/test/test_doctest2.txt \
third_party/python/Lib/test/test_doctest3.txt \
third_party/python/Lib/test/test_doctest4.txt \
third_party/python/Lib/test/audiodata/pluck-alaw.aifc \
third_party/python/Lib/test/audiodata/pluck-pcm32.wav \
third_party/python/Lib/test/audiodata/pluck-pcm8.aiff \
@ -1405,6 +1410,7 @@ THIRD_PARTY_PYTHON_PYTEST_A_DATA = \
third_party/python/Lib/test/audiodata/pluck-pcm24.aiff \
third_party/python/Lib/test/audiodata/pluck-pcm24.wav \
third_party/python/Lib/test/audiodata/pluck-pcm8.au \
third_party/python/Lib/test/imghdrdata/ \
third_party/python/Lib/test/imghdrdata/python.pgm \
third_party/python/Lib/test/imghdrdata/python.jpg \
third_party/python/Lib/test/imghdrdata/python.bmp \
@ -1671,6 +1677,8 @@ THIRD_PARTY_PYTHON_PYTEST_A_DATA = \
third_party/python/Lib/test/formatfloat_testcases.txt \
third_party/python/Lib/test/talos-2019-0758.pem \
third_party/python/Lib/test/badcert.pem \
third_party/python/Lib/test/bad_coding.py \
third_party/python/Lib/test/bad_coding2.py \
third_party/python/Lib/test/cmath_testcases.txt \
third_party/python/Lib/test/pstats.pck \
third_party/python/Lib/test/test_importlib/namespace_pkgs/project2/parent/child/two.py \
@ -1710,62 +1718,86 @@ THIRD_PARTY_PYTHON_PYTEST_A_DIRECTDEPS = \
# TESTS
THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_pow.py \
third_party/python/Lib/test/test_binascii.py \
third_party/python/Lib/test/test_binhex.py \
third_party/python/Lib/test/test__locale.py \
third_party/python/Lib/test/test_binop.py \
third_party/python/Lib/test/signalinterproctester.py \
third_party/python/Lib/test/sortperf.py \
third_party/python/Lib/test/test___future__.py \
third_party/python/Lib/test/test__locale.py \
third_party/python/Lib/test/test__opcode.py \
third_party/python/Lib/test/test_abc.py \
third_party/python/Lib/test/test_abstract_numbers.py \
third_party/python/Lib/test/test_aifc.py \
third_party/python/Lib/test/test_array.py \
third_party/python/Lib/test/test_atexit.py \
third_party/python/Lib/test/test_audioop.py \
third_party/python/Lib/test/test_bool.py \
third_party/python/Lib/test/test_augassign.py \
third_party/python/Lib/test/test_base64.py \
third_party/python/Lib/test/test_baseexception.py \
third_party/python/Lib/test/test_array.py \
third_party/python/Lib/test/test_builtin.py \
third_party/python/Lib/test/test_charmapcodec.py \
third_party/python/Lib/test/test_codecs.py \
third_party/python/Lib/test/test_codeop.py \
third_party/python/Lib/test/test_cgi.py \
third_party/python/Lib/test/test_abstract_numbers.py \
third_party/python/Lib/test/test_augassign.py \
third_party/python/Lib/test/test_bigaddrspace.py \
third_party/python/Lib/test/test_class.py \
third_party/python/Lib/test/test_call.py \
third_party/python/Lib/test/test_binascii.py \
third_party/python/Lib/test/test_binhex.py \
third_party/python/Lib/test/test_binop.py \
third_party/python/Lib/test/test_bisect.py \
third_party/python/Lib/test/test_bool.py \
third_party/python/Lib/test/test_buffer.py \
third_party/python/Lib/test/test_bufio.py \
third_party/python/Lib/test/test_enum.py \
third_party/python/Lib/test/test_code.py \
third_party/python/Lib/test/test_cmd.py \
third_party/python/Lib/test/test_pwd.py \
third_party/python/Lib/test/test_builtin.py \
third_party/python/Lib/test/test_bytes.py \
third_party/python/Lib/test/test_bz2.py \
third_party/python/Lib/test/test_calendar.py \
third_party/python/Lib/test/test_call.py \
third_party/python/Lib/test/test_cgi.py \
third_party/python/Lib/test/test_cgitb.py \
third_party/python/Lib/test/test_charmapcodec.py \
third_party/python/Lib/test/test_class.py \
third_party/python/Lib/test/test_cmath.py \
third_party/python/Lib/test/test_defaultdict.py \
third_party/python/Lib/test/test_decorators.py \
third_party/python/Lib/test/test_copy.py \
third_party/python/Lib/test/test_csv.py \
third_party/python/Lib/test/test_difflib.py \
third_party/python/Lib/test/test_cmd.py \
third_party/python/Lib/test/test_cmd_line.py \
third_party/python/Lib/test/test_cmd_line_script.py \
third_party/python/Lib/test/test_code.py \
third_party/python/Lib/test/test_code_module.py \
third_party/python/Lib/test/test_codeccallbacks.py \
third_party/python/Lib/test/test_codecencodings_cn.py \
third_party/python/Lib/test/test_codecencodings_hk.py \
third_party/python/Lib/test/test_codecencodings_iso2022.py \
third_party/python/Lib/test/test_codecencodings_jp.py \
third_party/python/Lib/test/test_codecencodings_kr.py \
third_party/python/Lib/test/test_codecencodings_tw.py \
third_party/python/Lib/test/test_codecmaps_cn.py \
third_party/python/Lib/test/test_codecmaps_hk.py \
third_party/python/Lib/test/test_codecmaps_jp.py \
third_party/python/Lib/test/test_codecmaps_kr.py \
third_party/python/Lib/test/test_codecmaps_tw.py \
third_party/python/Lib/test/test_codecs.py \
third_party/python/Lib/test/test_codeop.py \
third_party/python/Lib/test/test_collections.py \
third_party/python/Lib/test/test_colorsys.py \
third_party/python/Lib/test/test_compare.py \
third_party/python/Lib/test/test_compile.py \
third_party/python/Lib/test/test_complex.py \
third_party/python/Lib/test/test_contains.py \
third_party/python/Lib/test/test_contextlib.py \
third_party/python/Lib/test/test_copy.py \
third_party/python/Lib/test/test_copyreg.py \
third_party/python/Lib/test/test_collections.py \
third_party/python/Lib/test/test_format.py \
third_party/python/Lib/test/test_fractions.py \
third_party/python/Lib/test/test_eof.py \
third_party/python/Lib/test/test_fnmatch.py \
third_party/python/Lib/test/test_frame.py \
third_party/python/Lib/test/test_coroutines.py \
third_party/python/Lib/test/test_cosmo.py \
third_party/python/Lib/test/test_cprofile.py \
third_party/python/Lib/test/test_crashers.py \
third_party/python/Lib/test/test_csv.py \
third_party/python/Lib/test/test_decimal.py \
third_party/python/Lib/test/test_decorators.py \
third_party/python/Lib/test/test_defaultdict.py \
third_party/python/Lib/test/test_deque.py \
third_party/python/Lib/test/test_dict.py \
third_party/python/Lib/test/test_dict_version.py \
third_party/python/Lib/test/test_dictcomps.py \
third_party/python/Lib/test/test_dictviews.py \
third_party/python/Lib/test/test_difflib.py \
third_party/python/Lib/test/test_dis.py \
third_party/python/Lib/test/test_doctest.py \
third_party/python/Lib/test/test_doctest2.py \
third_party/python/Lib/test/test_dummy_threading.py \
third_party/python/Lib/test/test_dynamic.py \
third_party/python/Lib/test/test_dict.py \
third_party/python/Lib/test/test_wsgiref.py \
third_party/python/Lib/test/test_wave.py \
third_party/python/Lib/test/test_urlparse.py \
third_party/python/Lib/test/test_userdict.py \
third_party/python/Lib/test/test_userlist.py \
third_party/python/Lib/test/test_userstring.py \
third_party/python/Lib/test/test_utf8source.py \
third_party/python/Lib/test/test_uu.py \
third_party/python/Lib/test/test_dynamicclassattribute.py \
third_party/python/Lib/test/test_email/test__encoded_words.py \
third_party/python/Lib/test/test_email/test__header_value_parser.py \
third_party/python/Lib/test/test_email/test_asian_codecs.py \
@ -1780,226 +1812,228 @@ THIRD_PARTY_PYTHON_PYTEST_PYMAINS = \
third_party/python/Lib/test/test_email/test_pickleable.py \
third_party/python/Lib/test/test_email/test_policy.py \
third_party/python/Lib/test/test_email/test_utils.py \
third_party/python/Lib/test/test_strtod.py \
third_party/python/Lib/test/test_struct.py \
third_party/python/Lib/test/test_structmembers.py \
third_party/python/Lib/test/test_hash.py \
third_party/python/Lib/test/test_heapq.py \
third_party/python/Lib/test/test_operator.py \
third_party/python/Lib/test/test_optparse.py \
third_party/python/Lib/test/test_finalization.py \
third_party/python/Lib/test/test_enum.py \
third_party/python/Lib/test/test_enumerate.py \
third_party/python/Lib/test/test_eof.py \
third_party/python/Lib/test/test_epoll.py \
third_party/python/Lib/test/test_errno.py \
third_party/python/Lib/test/test_exception_hierarchy.py \
third_party/python/Lib/test/test_exception_variations.py \
third_party/python/Lib/test/test_exceptions.py \
third_party/python/Lib/test/test_extcall.py \
third_party/python/Lib/test/test_faulthandler.py \
third_party/python/Lib/test/test_fcntl.py \
third_party/python/Lib/test/test_file.py \
third_party/python/Lib/test/test_file_eintr.py \
third_party/python/Lib/test/test_filecmp.py \
third_party/python/Lib/test/test_fileinput.py \
third_party/python/Lib/test/test_fileio.py \
third_party/python/Lib/test/test_finalization.py \
third_party/python/Lib/test/test_float.py \
third_party/python/Lib/test/test_fnmatch.py \
third_party/python/Lib/test/test_format.py \
third_party/python/Lib/test/test_fractions.py \
third_party/python/Lib/test/test_frame.py \
third_party/python/Lib/test/test_fstring.py \
third_party/python/Lib/test/test_funcattrs.py \
third_party/python/Lib/test/test_functools.py \
third_party/python/Lib/test/test_future.py \
third_party/python/Lib/test/test_future3.py \
third_party/python/Lib/test/test_future4.py \
third_party/python/Lib/test/test_future5.py \
third_party/python/Lib/test/test_gc.py \
third_party/python/Lib/test/test_generator_stop.py \
third_party/python/Lib/test/test_generators.py \
third_party/python/Lib/test/test_genericpath.py \
third_party/python/Lib/test/test_genexps.py \
third_party/python/Lib/test/test_getargs2.py \
third_party/python/Lib/test/test_getopt.py \
third_party/python/Lib/test/test_getpass.py \
third_party/python/Lib/test/test_gettext.py \
third_party/python/Lib/test/test_glob.py \
third_party/python/Lib/test/test_global.py \
third_party/python/Lib/test/test_grp.py \
third_party/python/Lib/test/test_gzip.py \
third_party/python/Lib/test/test_hash.py \
third_party/python/Lib/test/test_hashlib.py \
third_party/python/Lib/test/test_heapq.py \
third_party/python/Lib/test/test_html.py \
third_party/python/Lib/test/test_htmlparser.py \
third_party/python/Lib/test/test_http_cookiejar.py \
third_party/python/Lib/test/test_http_cookies.py \
third_party/python/Lib/test/test_list.py \
third_party/python/Lib/test/test_long.py \
third_party/python/Lib/test/test_longexp.py \
third_party/python/Lib/test/test_glob.py \
third_party/python/Lib/test/test_global.py \
third_party/python/Lib/test/test_imghdr.py \
third_party/python/Lib/test/test_imp.py \
third_party/python/Lib/test/test_index.py \
third_party/python/Lib/test/test_int.py \
third_party/python/Lib/test/test_int_literal.py \
third_party/python/Lib/test/test_ioctl.py \
third_party/python/Lib/test/test_ipaddress.py \
third_party/python/Lib/test/test_isinstance.py \
third_party/python/Lib/test/test_iter.py \
third_party/python/Lib/test/test_tarfile.py \
third_party/python/Lib/test/test_iterlen.py \
third_party/python/Lib/test/test_stat.py \
third_party/python/Lib/test/test_itertools.py \
third_party/python/Lib/test/test_kdf.py \
third_party/python/Lib/test/test_keyword.py \
third_party/python/Lib/test/test_keywordonlyarg.py \
third_party/python/Lib/test/test_list.py \
third_party/python/Lib/test/test_listcomps.py \
third_party/python/Lib/test/test_logging.py \
third_party/python/Lib/test/test_long.py \
third_party/python/Lib/test/test_longexp.py \
third_party/python/Lib/test/test_mailbox.py \
third_party/python/Lib/test/test_marshal.py \
third_party/python/Lib/test/test_memoryio.py \
third_party/python/Lib/test/test_memoryview.py \
third_party/python/Lib/test/test_metaclass.py \
third_party/python/Lib/test/test_mimetypes.py \
third_party/python/Lib/test/test_hashlib.py \
third_party/python/Lib/test/test_kdf.py \
third_party/python/Lib/test/test_cosmo.py \
third_party/python/Lib/test/test_scratch.py \
third_party/python/Lib/test/test_complex.py \
third_party/python/Lib/test/test_funcattrs.py \
third_party/python/Lib/test/test_functools.py \
third_party/python/Lib/test/test_int.py \
third_party/python/Lib/test/test_int_literal.py \
third_party/python/Lib/test/test_bisect.py \
third_party/python/Lib/test/test_pyexpat.py \
third_party/python/Lib/test/test_ioctl.py \
third_party/python/Lib/test/test_getopt.py \
third_party/python/Lib/test/test_sort.py \
third_party/python/Lib/test/test_slice.py \
third_party/python/Lib/test/test_decimal.py \
third_party/python/Lib/test/test_deque.py \
third_party/python/Lib/test/test_minidom.py \
third_party/python/Lib/test/test_mmap.py \
third_party/python/Lib/test/test_poll.py \
third_party/python/Lib/test/test_robotparser.py \
third_party/python/Lib/test/test_re.py \
third_party/python/Lib/test/test_range.py \
third_party/python/Lib/test/test_sax.py \
third_party/python/Lib/test/test_scope.py \
third_party/python/Lib/test/test_stringprep.py \
third_party/python/Lib/test/test_syntax.py \
third_party/python/Lib/test/test_unicodedata.py \
third_party/python/Lib/test/test_unpack.py \
third_party/python/Lib/test/test_unpack_ex.py \
third_party/python/Lib/test/test_file.py \
third_party/python/Lib/test/test_uuid.py \
third_party/python/Lib/test/test_marshal.py \
third_party/python/Lib/test/test_filecmp.py \
third_party/python/Lib/test/test_fileinput.py \
third_party/python/Lib/test/test_fileio.py \
third_party/python/Lib/test/test_float.py \
third_party/python/Lib/test/test_module.py \
third_party/python/Lib/test/test_modulefinder.py \
third_party/python/Lib/test/test_multibytecodec.py \
third_party/python/Lib/test/test_numeric_tower.py \
third_party/python/Lib/test/test_opcodes.py \
third_party/python/Lib/test/test_operator.py \
third_party/python/Lib/test/test_optparse.py \
third_party/python/Lib/test/test_ordered_dict.py \
third_party/python/Lib/test/test_parser.py \
third_party/python/Lib/test/test_peepholer.py \
third_party/python/Lib/test/test_pickle.py \
third_party/python/Lib/test/test_pickletools.py \
third_party/python/Lib/test/test_tuple.py \
third_party/python/Lib/test/test_reprlib.py \
third_party/python/Lib/test/test_strftime.py \
third_party/python/Lib/test/test_quopri.py \
third_party/python/Lib/test/test_with.py \
third_party/python/Lib/test/test_raise.py \
third_party/python/Lib/test/test_yield_from.py \
third_party/python/Lib/test/test_typechecks.py \
third_party/python/Lib/test/test_statistics.py \
third_party/python/Lib/test/test_types.py \
third_party/python/Lib/test/test_random.py \
third_party/python/Lib/test/test_typing.py \
third_party/python/Lib/test/test_structseq.py \
third_party/python/Lib/test/test_unary.py \
third_party/python/Lib/test/test_print.py \
third_party/python/Lib/test/test_multibytecodec.py \
third_party/python/Lib/test/test_pprint.py \
third_party/python/Lib/test/test_secrets.py \
third_party/python/Lib/test/test_symbol.py \
third_party/python/Lib/test/test_select.py \
third_party/python/Lib/test/test_selectors.py \
third_party/python/Lib/test/test_contains.py \
third_party/python/Lib/test/test_super.py \
third_party/python/Lib/test/test_unicode.py \
third_party/python/Lib/test/test_timeit.py \
third_party/python/Lib/test/test_unicode_identifiers.py \
third_party/python/Lib/test/test_unicode_file.py \
third_party/python/Lib/test/test_unicode_file_functions.py \
third_party/python/Lib/test/test_textwrap.py \
third_party/python/Lib/test/test_pulldom.py \
third_party/python/Lib/test/test_minidom.py \
third_party/python/Lib/test/test_xml_dom_minicompat.py \
third_party/python/Lib/test/test_xml_etree_c.py \
third_party/python/Lib/test/test_opcodes.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_compile.py \
third_party/python/Lib/test/test_contextlib.py \
third_party/python/Lib/test/test_genexps.py \
third_party/python/Lib/test/test_setcomps.py \
third_party/python/Lib/test/test_listcomps.py \
third_party/python/Lib/test/test_itertools.py \
third_party/python/Lib/test/test_bytes.py \
third_party/python/Lib/test/test_subclassinit.py \
third_party/python/Lib/test/test_dictcomps.py \
third_party/python/Lib/test/test_dictviews.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_bz2.py \
third_party/python/Lib/test/test_zlib.py \
third_party/python/Lib/test/test_gzip.py \
third_party/python/Lib/test/test_keyword.py \
third_party/python/Lib/test/test_gc.py \
third_party/python/Lib/test/test_shutil.py \
third_party/python/Lib/test/test_time.py \
third_party/python/Lib/test/test_genericpath.py \
third_party/python/Lib/test/test_keywordonlyarg.py \
third_party/python/Lib/test/test_fcntl.py \
third_party/python/Lib/test/test_exceptions.py \
third_party/python/Lib/test/test_profile.py \
third_party/python/Lib/test/test_cprofile.py \
third_party/python/Lib/test/test_fstring.py \
third_party/python/Lib/test/test_future.py \
third_party/python/Lib/test/test_future3.py \
third_party/python/Lib/test/test_future4.py \
third_party/python/Lib/test/test_zipapp.py \
third_party/python/Lib/test/test_future5.py \
third_party/python/Lib/test/test_pipes.py \
third_party/python/Lib/test/test_pkgimport.py \
third_party/python/Lib/test/test_plistlib.py \
third_party/python/Lib/test/test_poll.py \
third_party/python/Lib/test/test_poll.py \
third_party/python/Lib/test/test_popen.py \
third_party/python/Lib/test/test_pipes.py \
third_party/python/Lib/test/test_imp.py \
third_party/python/Lib/test/test_pow.py \
third_party/python/Lib/test/test_pprint.py \
third_party/python/Lib/test/test_print.py \
third_party/python/Lib/test/test_profile.py \
third_party/python/Lib/test/test_property.py \
third_party/python/Lib/test/test_pstats.py \
third_party/python/Lib/test/test_pulldom.py \
third_party/python/Lib/test/test_pwd.py \
third_party/python/Lib/test/test_py_compile.py \
third_party/python/Lib/test/test_pyexpat.py \
third_party/python/Lib/test/test_quopri.py \
third_party/python/Lib/test/test_raise.py \
third_party/python/Lib/test/test_random.py \
third_party/python/Lib/test/test_range.py \
third_party/python/Lib/test/test_re.py \
third_party/python/Lib/test/test_repl.py \
third_party/python/Lib/test/test_reprlib.py \
third_party/python/Lib/test/test_resource.py \
third_party/python/Lib/test/test_richcmp.py \
third_party/python/Lib/test/test_plistlib.py \
third_party/python/Lib/test/test_robotparser.py \
third_party/python/Lib/test/test_sax.py \
third_party/python/Lib/test/test_sched.py \
third_party/python/Lib/test/test_scope.py \
third_party/python/Lib/test/test_scratch.py \
third_party/python/Lib/test/test_script_helper.py \
third_party/python/Lib/test/test_secrets.py \
third_party/python/Lib/test/test_select.py \
third_party/python/Lib/test/test_selectors.py \
third_party/python/Lib/test/test_setcomps.py \
third_party/python/Lib/test/test_shlex.py \
third_party/python/Lib/test/test_shutil.py \
third_party/python/Lib/test/test_signal.py \
third_party/python/Lib/test/test_site.py \
third_party/python/Lib/test/test_slice.py \
third_party/python/Lib/test/test_sndhdr.py \
third_party/python/Lib/test/test_sort.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_sqlite.py \
third_party/python/Lib/test/test_stat.py \
third_party/python/Lib/test/test_statistics.py \
third_party/python/Lib/test/test_strftime.py \
third_party/python/Lib/test/test_string.py \
third_party/python/Lib/test/test_string_literals.py \
third_party/python/Lib/test/test_stringprep.py \
third_party/python/Lib/test/test_strptime.py \
third_party/python/Lib/test/test_strtod.py \
third_party/python/Lib/test/test_struct.py \
third_party/python/Lib/test/test_structmembers.py \
third_party/python/Lib/test/test_structseq.py \
third_party/python/Lib/test/test_subclassinit.py \
third_party/python/Lib/test/test_sunau.py \
third_party/python/Lib/test/test_super.py \
third_party/python/Lib/test/test_symbol.py \
third_party/python/Lib/test/test_symtable.py \
third_party/python/Lib/test/test_syntax.py \
third_party/python/Lib/test/test_sys_setprofile.py \
third_party/python/Lib/test/test_syslog.py \
third_party/python/Lib/test/test_tarfile.py \
third_party/python/Lib/test/test_textwrap.py \
third_party/python/Lib/test/test_time.py \
third_party/python/Lib/test/test_timeit.py \
third_party/python/Lib/test/test_timeout.py \
third_party/python/Lib/test/test_tokenize.py \
third_party/python/Lib/test/test_trace.py \
third_party/python/Lib/test/test_tuple.py \
third_party/python/Lib/test/test_typechecks.py \
third_party/python/Lib/test/test_types.py \
third_party/python/Lib/test/test_typing.py \
third_party/python/Lib/test/test_unary.py \
third_party/python/Lib/test/test_unicode.py \
third_party/python/Lib/test/test_unicode_file.py \
third_party/python/Lib/test/test_unicode_file_functions.py \
third_party/python/Lib/test/test_unicode_identifiers.py \
third_party/python/Lib/test/test_unicodedata.py \
third_party/python/Lib/test/test_univnewlines.py \
third_party/python/Lib/test/test_codeccallbacks.py \
third_party/python/Lib/test/test_codecmaps_cn.py \
third_party/python/Lib/test/test_codecmaps_jp.py \
third_party/python/Lib/test/test_codecmaps_hk.py \
third_party/python/Lib/test/test_codecmaps_kr.py \
third_party/python/Lib/test/test_codecmaps_tw.py \
third_party/python/Lib/test/test_codecencodings_cn.py \
third_party/python/Lib/test/test_codecencodings_hk.py \
third_party/python/Lib/test/test_codecencodings_iso2022.py \
third_party/python/Lib/test/test_codecencodings_jp.py \
third_party/python/Lib/test/test_codecencodings_kr.py \
third_party/python/Lib/test/test_codecencodings_tw.py \
third_party/python/Lib/test/test_unpack.py \
third_party/python/Lib/test/test_unpack_ex.py \
third_party/python/Lib/test/test_urlparse.py \
third_party/python/Lib/test/test_userdict.py \
third_party/python/Lib/test/test_userlist.py \
third_party/python/Lib/test/test_userstring.py \
third_party/python/Lib/test/test_utf8source.py \
third_party/python/Lib/test/test_uu.py \
third_party/python/Lib/test/test_uuid.py \
third_party/python/Lib/test/test_wave.py \
third_party/python/Lib/test/test_weakref.py \
third_party/python/Lib/test/test_weakset.py \
third_party/python/Lib/test/test_with.py \
third_party/python/Lib/test/test_wsgiref.py \
third_party/python/Lib/test/test_xdrlib.py \
third_party/python/Lib/test/test_xml_dom_minicompat.py \
third_party/python/Lib/test/test_xml_etree_c.py \
third_party/python/Lib/test/test_yield_from.py \
third_party/python/Lib/test/test_zipapp.py \
third_party/python/Lib/test/test_zipimport.py \
third_party/python/Lib/test/test_zlib.py
THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_signal.py \
third_party/python/Lib/test/test_zipimport.py \
third_party/python/Lib/test/test_coroutines.py \
third_party/python/Lib/test/test_tempfile.py \
third_party/python/Lib/test/test_normalization.py \
third_party/python/Lib/test/test_capi.py \
third_party/python/Lib/test/test_dis.py \
third_party/python/Lib/test/test_os.py \
third_party/python/Lib/test/test_logging.py \
third_party/python/Lib/test/test_io.py \
third_party/python/Lib/test/test_tracemalloc.py \
third_party/python/Lib/test/test_configparser.py \
third_party/python/Lib/test/test_flufl.py \
third_party/python/Lib/test/test_sys.py \
third_party/python/Lib/test/test_cgitb.py \
third_party/python/Lib/test/test_asyncgen.py \
third_party/python/Lib/test/test_runpy.py \
third_party/python/Lib/test/test_doctest.py \
third_party/python/Lib/test/test_doctest2.py \
third_party/python/Lib/test/test_calendar.py \
third_party/python/Lib/test/test_asynchat.py \
third_party/python/Lib/test/mp_preload.py \
third_party/python/Lib/test/outstanding_bugs.py \
third_party/python/Lib/test/pythoninfo.py \
third_party/python/Lib/test/test_asdl_parser.py \
third_party/python/Lib/test/test_atexit.py \
third_party/python/Lib/test/test_asyncgen.py \
third_party/python/Lib/test/test_asynchat.py \
third_party/python/Lib/test/test_asyncore.py \
third_party/python/Lib/test/test_epoll.py \
third_party/python/Lib/test/test_cmd_line.py \
third_party/python/Lib/test/test_cmd_line_script.py \
third_party/python/Lib/test/test_code_module.py \
third_party/python/Lib/test/test_crashers.py \
third_party/python/Lib/test/test_bigmem.py \
third_party/python/Lib/test/test_capi.py \
third_party/python/Lib/test/test_crypt.py \
third_party/python/Lib/test/test_datetime.py \
third_party/python/Lib/test/test_descrtut.py \
third_party/python/Lib/test/test_devpoll.py \
third_party/python/Lib/test/test_dict_version.py \
third_party/python/Lib/test/test_dtrace.py \
third_party/python/Lib/test/test_dynamicclassattribute.py \
third_party/python/Lib/test/test_eintr.py \
third_party/python/Lib/test/test_exception_hierarchy.py \
third_party/python/Lib/test/test_xmlrpc_net.py \
third_party/python/Lib/test/test_bigmem.py \
third_party/python/Lib/test/test_exception_variations.py \
third_party/python/Lib/test/test_docxmlrpc.py \
third_party/python/Lib/test/test_extcall.py \
third_party/python/Lib/test/test_faulthandler.py \
third_party/python/Lib/test/test_file_eintr.py \
third_party/python/Lib/test/test_dtrace.py \
third_party/python/Lib/test/test_eintr.py \
third_party/python/Lib/test/test_flufl.py \
third_party/python/Lib/test/test_fork1.py \
third_party/python/Lib/test/test_ftplib.py \
third_party/python/Lib/test/test_gdb.py \
third_party/python/Lib/test/test_generator_stop.py \
third_party/python/Lib/test/test_generators.py \
third_party/python/Lib/test/test_getargs2.py \
third_party/python/Lib/test/test_getpass.py \
third_party/python/Lib/test/test_gettext.py \
third_party/python/Lib/test/test_grp.py \
third_party/python/Lib/test/test_httplib.py \
third_party/python/Lib/test/test_imaplib.py \
third_party/python/Lib/test/test_imghdr.py \
third_party/python/Lib/test/test_index.py \
third_party/python/Lib/test/test_io.py \
third_party/python/Lib/test/test_kqueue.py \
third_party/python/Lib/test/test_largefile.py \
third_party/python/Lib/test/test_linecache.py \
third_party/python/Lib/test/test_locale.py \
third_party/python/Lib/test/test_macpath.py \
third_party/python/Lib/test/test_macurl2path.py \
third_party/python/Lib/test/test_mailbox.py \
third_party/python/Lib/test/test_mailcap.py \
third_party/python/Lib/test/test_module.py \
third_party/python/Lib/test/test_modulefinder.py \
third_party/python/Lib/test/test_multiprocessing_fork.py \
third_party/python/Lib/test/test_multiprocessing_forkserver.py \
third_party/python/Lib/test/test_multiprocessing_main_handling.py \
@ -2009,56 +2043,37 @@ THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_netrc.py \
third_party/python/Lib/test/test_nis.py \
third_party/python/Lib/test/test_nntplib.py \
third_party/python/Lib/test/test_normalization.py \
third_party/python/Lib/test/test_ntpath.py \
third_party/python/Lib/test/test_numeric_tower.py \
third_party/python/Lib/test/test_openpty.py \
third_party/python/Lib/test/test_os.py \
third_party/python/Lib/test/test_ossaudiodev.py \
third_party/python/Lib/test/test_parser.py \
third_party/python/Lib/test/test_pathlib.py \
third_party/python/Lib/test/test_pdb.py \
third_party/python/Lib/test/test_peepholer.py \
third_party/python/Lib/test/test_pkgimport.py \
third_party/python/Lib/test/test_platform.py \
third_party/python/Lib/test/test_httplib.py \
third_party/python/Lib/test/test_poplib.py \
third_party/python/Lib/test/test_posix.py \
third_party/python/Lib/test/test_posixpath.py \
third_party/python/Lib/test/test_property.py \
third_party/python/Lib/test/test_pstats.py \
third_party/python/Lib/test/test_pty.py \
third_party/python/Lib/test/test_py_compile.py \
third_party/python/Lib/test/test_pyclbr.py \
third_party/python/Lib/test/test_pydoc.py \
third_party/python/Lib/test/test_queue.py \
third_party/python/Lib/test/test_readline.py \
third_party/python/Lib/test/test_regrtest.py \
third_party/python/Lib/test/test_repl.py \
third_party/python/Lib/test/test_resource.py \
third_party/python/Lib/test/test_sched.py \
third_party/python/Lib/test/test_script_helper.py \
third_party/python/Lib/test/test_shlex.py \
third_party/python/Lib/test/test_site.py \
third_party/python/Lib/test/test_runpy.py \
third_party/python/Lib/test/test_smtpd.py \
third_party/python/Lib/test/test_smtplib.py \
third_party/python/Lib/test/test_smtpnet.py \
third_party/python/Lib/test/test_sndhdr.py \
third_party/python/Lib/test/test_socket.py \
third_party/python/Lib/test/test_socketserver.py \
third_party/python/Lib/test/test_spwd.py \
third_party/python/Lib/test/test_startfile.py \
third_party/python/Lib/test/test_string.py \
third_party/python/Lib/test/test_string_literals.py \
third_party/python/Lib/test/test_strptime.py \
third_party/python/Lib/test/test_subprocess.py \
third_party/python/Lib/test/test_sunau.py \
third_party/python/Lib/test/test_support.py \
third_party/python/Lib/test/test_symtable.py \
third_party/python/Lib/test/test_sys_setprofile.py \
third_party/python/Lib/test/test_syslog.py \
third_party/python/Lib/test/test_sys.py \
third_party/python/Lib/test/test_telnetlib.py \
third_party/python/Lib/test/test_tempfile.py \
third_party/python/Lib/test/test_threadedtempfile.py \
third_party/python/Lib/test/test_timeout.py \
third_party/python/Lib/test/test_tokenize.py \
third_party/python/Lib/test/test_trace.py \
third_party/python/Lib/test/test_traceback.py \
third_party/python/Lib/test/test_tracemalloc.py \
third_party/python/Lib/test/test_turtle.py \
third_party/python/Lib/test/test_unittest.py \
third_party/python/Lib/test/test_urllib.py \
@ -2070,21 +2085,9 @@ THIRD_PARTY_PYTHON_PYTEST_TODOS = \
third_party/python/Lib/test/test_wait3.py \
third_party/python/Lib/test/test_wait4.py \
third_party/python/Lib/test/test_webbrowser.py \
third_party/python/Lib/test/test_xdrlib.py \
third_party/python/Lib/test/test_weakref.py \
third_party/python/Lib/test/test_weakset.py \
third_party/python/Lib/test/test_xmlrpc_net.py \
third_party/python/Lib/test/test_zipfile.py \
third_party/python/Lib/test/test_zipfile64.py \
third_party/python/Lib/test/mp_preload.py \
third_party/python/Lib/test/bisect.py \
third_party/python/Lib/test/signalinterproctester.py \
third_party/python/Lib/test/pythoninfo.py \
third_party/python/Lib/test/datetimetester.py \
third_party/python/Lib/test/outstanding_bugs.py \
third_party/python/Lib/test/sortperf.py \
third_party/python/Lib/test/test_openpty.py \
third_party/python/Lib/test/test_queue.py \
third_party/python/Lib/test/test_ordered_dict.py \
third_party/python/Lib/test/test_zipfile64.py
THIRD_PARTY_PYTHON_PYTEST_PYMAINS_DIRECTDEPS = \
LIBC_NEXGEN32E \
@ -3816,6 +3819,72 @@ o/$(MODE)/third_party/python/Lib/test/test_random.o: \
-Y.python/test/randv2_64.pck \
-Y.python/test/randv3.pck
o/$(MODE)/third_party/python/Lib/test/test_pstats.o: \
PYFLAGS += \
-Y.python/test/pstats.pck
o/$(MODE)/third_party/python/Lib/test/test_sunau.o: \
PYFLAGS += \
-Y.python/test/audiodata/pluck-alaw.aifc \
-Y.python/test/audiodata/pluck-pcm16.aiff \
-Y.python/test/audiodata/pluck-pcm16.au \
-Y.python/test/audiodata/pluck-pcm16.wav \
-Y.python/test/audiodata/pluck-pcm24.aiff \
-Y.python/test/audiodata/pluck-pcm24.au \
-Y.python/test/audiodata/pluck-pcm24.wav \
-Y.python/test/audiodata/pluck-pcm32.aiff \
-Y.python/test/audiodata/pluck-pcm32.au \
-Y.python/test/audiodata/pluck-pcm32.wav \
-Y.python/test/audiodata/pluck-pcm8.aiff \
-Y.python/test/audiodata/pluck-pcm8.au \
-Y.python/test/audiodata/pluck-pcm8.wav \
-Y.python/test/audiodata/pluck-ulaw.aifc \
-Y.python/test/audiodata/pluck-ulaw.au
o/$(MODE)/third_party/python/Lib/test/test_py_compile.o: \
PYFLAGS += \
-Y.python/test/bad_coding2.py
o/$(MODE)/third_party/python/Lib/test/test_tokenize.o: \
PYFLAGS += \
-Y.python/test/bad_coding.py
o/$(MODE)/third_party/python/Lib/test/test_doctest.o: \
PYFLAGS += \
-Y.python/test/test_doctest.txt \
-Y.python/test/test_doctest2.txt \
-Y.python/test/test_doctest3.txt \
-Y.python/test/test_doctest4.txt
o/$(MODE)/third_party/python/Lib/test/test_imghdr.o: \
PYFLAGS += \
-Y.python/test/imghdrdata/ \
-Y.python/test/imghdrdata/python.bmp \
-Y.python/test/imghdrdata/python.exr \
-Y.python/test/imghdrdata/python.gif \
-Y.python/test/imghdrdata/python.jpg \
-Y.python/test/imghdrdata/python.pbm \
-Y.python/test/imghdrdata/python.pgm \
-Y.python/test/imghdrdata/python.png \
-Y.python/test/imghdrdata/python.ppm \
-Y.python/test/imghdrdata/python.ras \
-Y.python/test/imghdrdata/python.sgi \
-Y.python/test/imghdrdata/python.tiff \
-Y.python/test/imghdrdata/python.webp \
-Y.python/test/imghdrdata/python.xbm
o/$(MODE)/third_party/python/Lib/test/test_sndhdr.o: \
PYFLAGS += \
-Y.python/test/sndhdrdata/ \
-Y.python/test/sndhdrdata/sndhdr.8svx \
-Y.python/test/sndhdrdata/sndhdr.aifc \
-Y.python/test/sndhdrdata/sndhdr.aiff \
-Y.python/test/sndhdrdata/sndhdr.au \
-Y.python/test/sndhdrdata/sndhdr.hcom \
-Y.python/test/sndhdrdata/sndhdr.sndt \
-Y.python/test/sndhdrdata/sndhdr.voc \
-Y.python/test/sndhdrdata/sndhdr.wav
o/$(MODE)/third_party/python/Lib/test/test_email/test_email.o: \
PYFLAGS += \
-Y.python/test/test_email/data/PyBanner048.gif \
@ -4137,6 +4206,7 @@ o/$(MODE)/third_party/python/Lib/test/test_itertools.py.runs: QUOTA = -M1024m
o/$(MODE)/third_party/python/Lib/test/test_tarfile.py.runs: QUOTA = -L120 -C64
o/$(MODE)/third_party/python/Lib/test/test_sqlite.py.runs: QUOTA = -L120
o/$(MODE)/third_party/python/Lib/test/test_gzip.py.runs: QUOTA = -L120
o/$(MODE)/third_party/python/Lib/test/test_logging.py.runs: QUOTA = -M512m
o/$(MODE)/third_party/python/Lib/test/test_email/test_email.py.runs: QUOTA = -C32 -M1024m
THIRD_PARTY_PYTHON_LIBS = \