mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-18 21:04:40 +00:00
The ZIP filesystem has a breaking change. You now need to use /zip/ to open() / opendir() / etc. assets within the ZIP structure of your APE binary, instead of the previous convention of using zip: or zip! URIs. This is needed because Python likes to use absolute paths, and having ZIP paths encoded like URIs simply broke too many things. Many more system calls have been updated to be able to operate on ZIP files and file descriptors. In particular fcntl() and ioctl() since Python would do things like ask if a ZIP file is a terminal and get confused when the old implementation mistakenly said yes, because the fastest way to guarantee native file descriptors is to dup(2). This change also improves the async signal safety of zipos and ensures it doesn't maintain any open file descriptors beyond that which the user has opened. This change makes a lot of progress towards adding magic numbers that are specific to platforms other than Linux. The philosophy here is that, if you use an operating system like FreeBSD, then you should be able to take advantage of FreeBSD exclusive features, even if we don't polyfill them on other platforms. For example, you can now open() a file with the O_VERIFY flag. If your program runs on other platforms, then Cosmo will automatically set O_VERIFY to zero. This lets you safely use it without the need for #ifdef or ifstatements which detract from readability. One of the blindspots of the ASAN memory hardening we use to offer Rust like assurances has always been that memory passed to the kernel via system calls (e.g. writev) can't be checked automatically since the kernel wasn't built with MODE=asan. This change makes more progress ensuring that each system call will verify the soundness of memory before it's passed to the kernel. The code for doing these checks is fast, particularly for buffers, where it can verify 64 bytes a cycle. - Correct O_LOOP definition on NT - Introduce program_executable_name - Add ASAN guards to more system calls - Improve termios compatibility with BSDs - Fix bug in Windows auxiliary value encoding - Add BSD and XNU specific errnos and open flags - Add check to ensure build doesn't talk to internet
1047 lines
55 KiB
C
1047 lines
55 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Python 3 │
|
|
│ https://docs.python.org/3/license.html │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "third_party/python/Programs/python.c"
|
|
/* clang-format off */
|
|
|
|
STATIC_YOINK(".python/");
|
|
PYTHON_YOINK(".python/__future__.py");
|
|
|
|
PYTHON_YOINK(".python/test/__init__.py");
|
|
PYTHON_YOINK(".python/test/__main__.py");
|
|
PYTHON_YOINK(".python/test/_test_multiprocessing.py");
|
|
PYTHON_YOINK(".python/test/ann_module.py");
|
|
PYTHON_YOINK(".python/test/ann_module2.py");
|
|
PYTHON_YOINK(".python/test/ann_module3.py");
|
|
PYTHON_YOINK(".python/test/audiotests.py");
|
|
PYTHON_YOINK(".python/test/autotest.py");
|
|
PYTHON_YOINK(".python/test/bisect.py");
|
|
PYTHON_YOINK(".python/test/bytecode_helper.py");
|
|
PYTHON_YOINK(".python/test/coding20731.py");
|
|
PYTHON_YOINK(".python/test/crashers/bogus_code_obj.py");
|
|
PYTHON_YOINK(".python/test/crashers/gc_inspection.py");
|
|
PYTHON_YOINK(".python/test/crashers/infinite_loop_re.py");
|
|
PYTHON_YOINK(".python/test/crashers/mutation_inside_cyclegc.py");
|
|
PYTHON_YOINK(".python/test/crashers/recursive_call.py");
|
|
PYTHON_YOINK(".python/test/crashers/trace_at_recursion_limit.py");
|
|
PYTHON_YOINK(".python/test/crashers/underlying_dict.py");
|
|
PYTHON_YOINK(".python/test/curses_tests.py");
|
|
PYTHON_YOINK(".python/test/datetimetester.py");
|
|
PYTHON_YOINK(".python/test/dis_module.py");
|
|
PYTHON_YOINK(".python/test/doctest_aliases.py");
|
|
PYTHON_YOINK(".python/test/double_const.py");
|
|
PYTHON_YOINK(".python/test/dtracedata/call_stack.py");
|
|
PYTHON_YOINK(".python/test/dtracedata/gc.py");
|
|
PYTHON_YOINK(".python/test/dtracedata/instance.py");
|
|
PYTHON_YOINK(".python/test/dtracedata/line.py");
|
|
PYTHON_YOINK(".python/test/eintrdata/eintr_tester.py");
|
|
PYTHON_YOINK(".python/test/final_a.py");
|
|
PYTHON_YOINK(".python/test/final_b.py");
|
|
PYTHON_YOINK(".python/test/fork_wait.py");
|
|
PYTHON_YOINK(".python/test/future_test1.py");
|
|
PYTHON_YOINK(".python/test/future_test2.py");
|
|
PYTHON_YOINK(".python/test/gdb_sample.py");
|
|
PYTHON_YOINK(".python/test/imp_dummy.py");
|
|
PYTHON_YOINK(".python/test/inspect_fodder.py");
|
|
PYTHON_YOINK(".python/test/inspect_fodder2.py");
|
|
PYTHON_YOINK(".python/test/leakers/__init__.py");
|
|
PYTHON_YOINK(".python/test/leakers/test_ctypes.py");
|
|
PYTHON_YOINK(".python/test/leakers/test_selftype.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/__init__.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/cmdline.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/main.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/refleak.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/runtest.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/runtest_mp.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/save_env.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/setup.py");
|
|
PYTHON_YOINK(".python/test/libregrtest/utils.py");
|
|
PYTHON_YOINK(".python/test/list_tests.py");
|
|
PYTHON_YOINK(".python/test/lock_tests.py");
|
|
PYTHON_YOINK(".python/test/make_ssl_certs.py");
|
|
PYTHON_YOINK(".python/test/mapping_tests.py");
|
|
PYTHON_YOINK(".python/test/memory_watchdog.py");
|
|
PYTHON_YOINK(".python/test/mock_socket.py");
|
|
PYTHON_YOINK(".python/test/mod_generics_cache.py");
|
|
PYTHON_YOINK(".python/test/mp_fork_bomb.py");
|
|
PYTHON_YOINK(".python/test/mp_preload.py");
|
|
PYTHON_YOINK(".python/test/multibytecodec_support.py");
|
|
PYTHON_YOINK(".python/test/outstanding_bugs.py");
|
|
PYTHON_YOINK(".python/test/pickletester.py");
|
|
PYTHON_YOINK(".python/test/profilee.py");
|
|
PYTHON_YOINK(".python/test/pyclbr_input.py");
|
|
PYTHON_YOINK(".python/test/pydoc_mod.py");
|
|
PYTHON_YOINK(".python/test/pydocfodder.py");
|
|
PYTHON_YOINK(".python/test/pystone.py");
|
|
PYTHON_YOINK(".python/test/pythoninfo.py");
|
|
PYTHON_YOINK(".python/test/re_tests.py");
|
|
PYTHON_YOINK(".python/test/regrtest.py");
|
|
PYTHON_YOINK(".python/test/relimport.py");
|
|
PYTHON_YOINK(".python/test/reperf.py");
|
|
PYTHON_YOINK(".python/test/sample_doctest.py");
|
|
PYTHON_YOINK(".python/test/sample_doctest_no_docstrings.py");
|
|
PYTHON_YOINK(".python/test/sample_doctest_no_doctests.py");
|
|
PYTHON_YOINK(".python/test/seq_tests.py");
|
|
PYTHON_YOINK(".python/test/signalinterproctester.py");
|
|
PYTHON_YOINK(".python/test/sortperf.py");
|
|
PYTHON_YOINK(".python/test/ssl_servers.py");
|
|
PYTHON_YOINK(".python/test/ssltests.py");
|
|
PYTHON_YOINK(".python/test/string_tests.py");
|
|
PYTHON_YOINK(".python/test/subprocessdata/fd_status.py");
|
|
PYTHON_YOINK(".python/test/subprocessdata/input_reader.py");
|
|
PYTHON_YOINK(".python/test/subprocessdata/qcat.py");
|
|
PYTHON_YOINK(".python/test/subprocessdata/qgrep.py");
|
|
PYTHON_YOINK(".python/test/subprocessdata/sigchild_ignore.py");
|
|
PYTHON_YOINK(".python/test/support/__init__.py");
|
|
PYTHON_YOINK(".python/test/support/script_helper.py");
|
|
PYTHON_YOINK(".python/test/support/testresult.py");
|
|
PYTHON_YOINK(".python/test/test___all__.py");
|
|
PYTHON_YOINK(".python/test/test___future__.py");
|
|
PYTHON_YOINK(".python/test/test__locale.py");
|
|
PYTHON_YOINK(".python/test/test__opcode.py");
|
|
PYTHON_YOINK(".python/test/test__osx_support.py");
|
|
PYTHON_YOINK(".python/test/test_abc.py");
|
|
PYTHON_YOINK(".python/test/test_abstract_numbers.py");
|
|
PYTHON_YOINK(".python/test/test_aifc.py");
|
|
PYTHON_YOINK(".python/test/test_argparse.py");
|
|
PYTHON_YOINK(".python/test/test_array.py");
|
|
PYTHON_YOINK(".python/test/test_asdl_parser.py");
|
|
PYTHON_YOINK(".python/test/test_ast.py");
|
|
PYTHON_YOINK(".python/test/test_asyncgen.py");
|
|
PYTHON_YOINK(".python/test/test_asynchat.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/echo.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/echo2.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/echo3.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_base_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_futures.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_locks.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_pep492.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_proactor_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_queues.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_selector_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_sslproto.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_streams.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_subprocess.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_tasks.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_transports.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_unix_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_windows_events.py");
|
|
PYTHON_YOINK(".python/test/test_asyncio/test_windows_utils.py");
|
|
PYTHON_YOINK(".python/test/test_asyncore.py");
|
|
PYTHON_YOINK(".python/test/test_atexit.py");
|
|
PYTHON_YOINK(".python/test/test_audioop.py");
|
|
PYTHON_YOINK(".python/test/test_augassign.py");
|
|
PYTHON_YOINK(".python/test/test_base64.py");
|
|
PYTHON_YOINK(".python/test/test_baseexception.py");
|
|
PYTHON_YOINK(".python/test/test_bdb.py");
|
|
PYTHON_YOINK(".python/test/test_bigaddrspace.py");
|
|
PYTHON_YOINK(".python/test/test_bigmem.py");
|
|
PYTHON_YOINK(".python/test/test_binascii.py");
|
|
PYTHON_YOINK(".python/test/test_binhex.py");
|
|
PYTHON_YOINK(".python/test/test_binop.py");
|
|
PYTHON_YOINK(".python/test/test_bisect.py");
|
|
PYTHON_YOINK(".python/test/test_bool.py");
|
|
PYTHON_YOINK(".python/test/test_buffer.py");
|
|
PYTHON_YOINK(".python/test/test_bufio.py");
|
|
PYTHON_YOINK(".python/test/test_builtin.py");
|
|
PYTHON_YOINK(".python/test/test_bytes.py");
|
|
PYTHON_YOINK(".python/test/test_bz2.py");
|
|
PYTHON_YOINK(".python/test/test_calendar.py");
|
|
PYTHON_YOINK(".python/test/test_call.py");
|
|
PYTHON_YOINK(".python/test/test_capi.py");
|
|
PYTHON_YOINK(".python/test/test_cgi.py");
|
|
PYTHON_YOINK(".python/test/test_cgitb.py");
|
|
PYTHON_YOINK(".python/test/test_charmapcodec.py");
|
|
PYTHON_YOINK(".python/test/test_class.py");
|
|
PYTHON_YOINK(".python/test/test_cmath.py");
|
|
PYTHON_YOINK(".python/test/test_cmd.py");
|
|
PYTHON_YOINK(".python/test/test_cmd_line.py");
|
|
PYTHON_YOINK(".python/test/test_cmd_line_script.py");
|
|
PYTHON_YOINK(".python/test/test_code.py");
|
|
PYTHON_YOINK(".python/test/test_code_module.py");
|
|
PYTHON_YOINK(".python/test/test_codeccallbacks.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_cn.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_hk.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_iso2022.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_jp.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_kr.py");
|
|
PYTHON_YOINK(".python/test/test_codecencodings_tw.py");
|
|
PYTHON_YOINK(".python/test/test_codecmaps_cn.py");
|
|
PYTHON_YOINK(".python/test/test_codecmaps_hk.py");
|
|
PYTHON_YOINK(".python/test/test_codecmaps_jp.py");
|
|
PYTHON_YOINK(".python/test/test_codecmaps_kr.py");
|
|
PYTHON_YOINK(".python/test/test_codecmaps_tw.py");
|
|
PYTHON_YOINK(".python/test/test_codecs.py");
|
|
PYTHON_YOINK(".python/test/test_codeop.py");
|
|
PYTHON_YOINK(".python/test/test_collections.py");
|
|
PYTHON_YOINK(".python/test/test_colorsys.py");
|
|
PYTHON_YOINK(".python/test/test_compare.py");
|
|
PYTHON_YOINK(".python/test/test_compile.py");
|
|
PYTHON_YOINK(".python/test/test_compileall.py");
|
|
PYTHON_YOINK(".python/test/test_complex.py");
|
|
PYTHON_YOINK(".python/test/test_concurrent_futures.py");
|
|
PYTHON_YOINK(".python/test/test_configparser.py");
|
|
PYTHON_YOINK(".python/test/test_contains.py");
|
|
PYTHON_YOINK(".python/test/test_contextlib.py");
|
|
PYTHON_YOINK(".python/test/test_copy.py");
|
|
PYTHON_YOINK(".python/test/test_copyreg.py");
|
|
PYTHON_YOINK(".python/test/test_coroutines.py");
|
|
PYTHON_YOINK(".python/test/test_cprofile.py");
|
|
PYTHON_YOINK(".python/test/test_crashers.py");
|
|
PYTHON_YOINK(".python/test/test_crypt.py");
|
|
PYTHON_YOINK(".python/test/test_csv.py");
|
|
PYTHON_YOINK(".python/test/test_ctypes.py");
|
|
PYTHON_YOINK(".python/test/test_curses.py");
|
|
PYTHON_YOINK(".python/test/test_datetime.py");
|
|
PYTHON_YOINK(".python/test/test_dbm.py");
|
|
PYTHON_YOINK(".python/test/test_dbm_dumb.py");
|
|
PYTHON_YOINK(".python/test/test_dbm_gnu.py");
|
|
PYTHON_YOINK(".python/test/test_dbm_ndbm.py");
|
|
PYTHON_YOINK(".python/test/test_decimal.py");
|
|
PYTHON_YOINK(".python/test/test_decorators.py");
|
|
PYTHON_YOINK(".python/test/test_defaultdict.py");
|
|
PYTHON_YOINK(".python/test/test_deque.py");
|
|
PYTHON_YOINK(".python/test/test_descr.py");
|
|
PYTHON_YOINK(".python/test/test_descrtut.py");
|
|
PYTHON_YOINK(".python/test/test_devpoll.py");
|
|
PYTHON_YOINK(".python/test/test_dict.py");
|
|
PYTHON_YOINK(".python/test/test_dict_version.py");
|
|
PYTHON_YOINK(".python/test/test_dictcomps.py");
|
|
PYTHON_YOINK(".python/test/test_dictviews.py");
|
|
PYTHON_YOINK(".python/test/test_difflib.py");
|
|
PYTHON_YOINK(".python/test/test_dis.py");
|
|
PYTHON_YOINK(".python/test/test_distutils.py");
|
|
PYTHON_YOINK(".python/test/test_doctest.py");
|
|
PYTHON_YOINK(".python/test/test_doctest2.py");
|
|
PYTHON_YOINK(".python/test/test_docxmlrpc.py");
|
|
PYTHON_YOINK(".python/test/test_dtrace.py");
|
|
PYTHON_YOINK(".python/test/test_dummy_thread.py");
|
|
PYTHON_YOINK(".python/test/test_dummy_threading.py");
|
|
PYTHON_YOINK(".python/test/test_dynamic.py");
|
|
PYTHON_YOINK(".python/test/test_dynamicclassattribute.py");
|
|
PYTHON_YOINK(".python/test/test_eintr.py");
|
|
PYTHON_YOINK(".python/test/test_email/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_email/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_email/test__encoded_words.py");
|
|
PYTHON_YOINK(".python/test/test_email/test__header_value_parser.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_asian_codecs.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_contentmanager.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_defect_handling.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_email.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_generator.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_headerregistry.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_inversion.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_message.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_parser.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_pickleable.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_policy.py");
|
|
PYTHON_YOINK(".python/test/test_email/test_utils.py");
|
|
PYTHON_YOINK(".python/test/test_email/torture_test.py");
|
|
PYTHON_YOINK(".python/test/test_ensurepip.py");
|
|
PYTHON_YOINK(".python/test/test_enum.py");
|
|
PYTHON_YOINK(".python/test/test_enumerate.py");
|
|
PYTHON_YOINK(".python/test/test_eof.py");
|
|
PYTHON_YOINK(".python/test/test_epoll.py");
|
|
PYTHON_YOINK(".python/test/test_errno.py");
|
|
PYTHON_YOINK(".python/test/test_exception_hierarchy.py");
|
|
PYTHON_YOINK(".python/test/test_exception_variations.py");
|
|
PYTHON_YOINK(".python/test/test_exceptions.py");
|
|
PYTHON_YOINK(".python/test/test_extcall.py");
|
|
PYTHON_YOINK(".python/test/test_faulthandler.py");
|
|
PYTHON_YOINK(".python/test/test_fcntl.py");
|
|
PYTHON_YOINK(".python/test/test_file.py");
|
|
PYTHON_YOINK(".python/test/test_file_eintr.py");
|
|
PYTHON_YOINK(".python/test/test_filecmp.py");
|
|
PYTHON_YOINK(".python/test/test_fileinput.py");
|
|
PYTHON_YOINK(".python/test/test_fileio.py");
|
|
PYTHON_YOINK(".python/test/test_finalization.py");
|
|
PYTHON_YOINK(".python/test/test_float.py");
|
|
PYTHON_YOINK(".python/test/test_flufl.py");
|
|
PYTHON_YOINK(".python/test/test_fnmatch.py");
|
|
PYTHON_YOINK(".python/test/test_fork1.py");
|
|
PYTHON_YOINK(".python/test/test_format.py");
|
|
PYTHON_YOINK(".python/test/test_fractions.py");
|
|
PYTHON_YOINK(".python/test/test_frame.py");
|
|
PYTHON_YOINK(".python/test/test_fstring.py");
|
|
PYTHON_YOINK(".python/test/test_ftplib.py");
|
|
PYTHON_YOINK(".python/test/test_funcattrs.py");
|
|
PYTHON_YOINK(".python/test/test_functools.py");
|
|
PYTHON_YOINK(".python/test/test_future.py");
|
|
PYTHON_YOINK(".python/test/test_future3.py");
|
|
PYTHON_YOINK(".python/test/test_future4.py");
|
|
PYTHON_YOINK(".python/test/test_future5.py");
|
|
PYTHON_YOINK(".python/test/test_gc.py");
|
|
PYTHON_YOINK(".python/test/test_gdb.py");
|
|
PYTHON_YOINK(".python/test/test_generator_stop.py");
|
|
PYTHON_YOINK(".python/test/test_generators.py");
|
|
PYTHON_YOINK(".python/test/test_genericpath.py");
|
|
PYTHON_YOINK(".python/test/test_genexps.py");
|
|
PYTHON_YOINK(".python/test/test_getargs2.py");
|
|
PYTHON_YOINK(".python/test/test_getopt.py");
|
|
PYTHON_YOINK(".python/test/test_getpass.py");
|
|
PYTHON_YOINK(".python/test/test_gettext.py");
|
|
PYTHON_YOINK(".python/test/test_glob.py");
|
|
PYTHON_YOINK(".python/test/test_global.py");
|
|
PYTHON_YOINK(".python/test/test_grammar.py");
|
|
PYTHON_YOINK(".python/test/test_grp.py");
|
|
PYTHON_YOINK(".python/test/test_gzip.py");
|
|
PYTHON_YOINK(".python/test/test_hash.py");
|
|
PYTHON_YOINK(".python/test/test_hashlib.py");
|
|
PYTHON_YOINK(".python/test/test_heapq.py");
|
|
PYTHON_YOINK(".python/test/test_hmac.py");
|
|
PYTHON_YOINK(".python/test/test_html.py");
|
|
PYTHON_YOINK(".python/test/test_htmlparser.py");
|
|
PYTHON_YOINK(".python/test/test_http_cookiejar.py");
|
|
PYTHON_YOINK(".python/test/test_http_cookies.py");
|
|
PYTHON_YOINK(".python/test/test_httplib.py");
|
|
PYTHON_YOINK(".python/test/test_httpservers.py");
|
|
PYTHON_YOINK(".python/test/test_idle.py");
|
|
PYTHON_YOINK(".python/test/test_imaplib.py");
|
|
PYTHON_YOINK(".python/test/test_imghdr.py");
|
|
PYTHON_YOINK(".python/test/test_imp.py");
|
|
PYTHON_YOINK(".python/test/test_import/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_import/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/basic.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/basic2.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/indirect.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/rebinding.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/rebinding2.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/subpackage.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/subpkg/subpackage2.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/subpkg/util.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/circular_imports/util.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/package/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/package/submodule.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/package2/submodule1.py");
|
|
PYTHON_YOINK(".python/test/test_import/data/package2/submodule2.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/abc.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/builtin/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/builtin/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/builtin/test_finder.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/builtin/test_loader.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/test_case_sensitivity.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/test_finder.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/test_loader.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/extension/test_path_hook.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/frozen/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/frozen/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/frozen/test_finder.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/frozen/test_loader.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test___loader__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test___package__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_api.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_caching.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_fromlist.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_meta_path.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_packages.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_path.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/import_/test_relative_imports.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/both_portions/foo/one.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/both_portions/foo/two.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/one.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/portion1/foo/one.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/portion2/foo/two.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/project1/parent/child/one.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/project2/parent/child/two.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/namespace_pkgs/project3/parent/child/three.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/test_case_sensitivity.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/test_file_loader.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/test_finder.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/source/test_path_hook.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_abc.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_api.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_lazy.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_locks.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_namespace_pkgs.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_spec.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_util.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/test_windows.py");
|
|
PYTHON_YOINK(".python/test/test_importlib/util.py");
|
|
PYTHON_YOINK(".python/test/test_index.py");
|
|
PYTHON_YOINK(".python/test/test_inspect.py");
|
|
PYTHON_YOINK(".python/test/test_int.py");
|
|
PYTHON_YOINK(".python/test/test_int_literal.py");
|
|
PYTHON_YOINK(".python/test/test_io.py");
|
|
PYTHON_YOINK(".python/test/test_ioctl.py");
|
|
PYTHON_YOINK(".python/test/test_ipaddress.py");
|
|
PYTHON_YOINK(".python/test/test_isinstance.py");
|
|
PYTHON_YOINK(".python/test/test_iter.py");
|
|
PYTHON_YOINK(".python/test/test_iterlen.py");
|
|
PYTHON_YOINK(".python/test/test_itertools.py");
|
|
PYTHON_YOINK(".python/test/test_json/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_json/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_decode.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_default.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_dump.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_encode_basestring_ascii.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_enum.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_fail.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_float.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_indent.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_pass1.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_pass2.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_pass3.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_recursion.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_scanstring.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_separators.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_speedups.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_tool.py");
|
|
PYTHON_YOINK(".python/test/test_json/test_unicode.py");
|
|
PYTHON_YOINK(".python/test/test_keyword.py");
|
|
PYTHON_YOINK(".python/test/test_keywordonlyarg.py");
|
|
PYTHON_YOINK(".python/test/test_kqueue.py");
|
|
PYTHON_YOINK(".python/test/test_largefile.py");
|
|
PYTHON_YOINK(".python/test/test_lib2to3.py");
|
|
PYTHON_YOINK(".python/test/test_linecache.py");
|
|
PYTHON_YOINK(".python/test/test_list.py");
|
|
PYTHON_YOINK(".python/test/test_listcomps.py");
|
|
PYTHON_YOINK(".python/test/test_locale.py");
|
|
PYTHON_YOINK(".python/test/test_logging.py");
|
|
PYTHON_YOINK(".python/test/test_long.py");
|
|
PYTHON_YOINK(".python/test/test_longexp.py");
|
|
PYTHON_YOINK(".python/test/test_lzma.py");
|
|
PYTHON_YOINK(".python/test/test_macpath.py");
|
|
PYTHON_YOINK(".python/test/test_macurl2path.py");
|
|
PYTHON_YOINK(".python/test/test_mailbox.py");
|
|
PYTHON_YOINK(".python/test/test_mailcap.py");
|
|
PYTHON_YOINK(".python/test/test_marshal.py");
|
|
PYTHON_YOINK(".python/test/test_math.py");
|
|
PYTHON_YOINK(".python/test/test_memoryio.py");
|
|
PYTHON_YOINK(".python/test/test_memoryview.py");
|
|
PYTHON_YOINK(".python/test/test_metaclass.py");
|
|
PYTHON_YOINK(".python/test/test_mimetypes.py");
|
|
PYTHON_YOINK(".python/test/test_minidom.py");
|
|
PYTHON_YOINK(".python/test/test_mmap.py");
|
|
PYTHON_YOINK(".python/test/test_module.py");
|
|
PYTHON_YOINK(".python/test/test_modulefinder.py");
|
|
PYTHON_YOINK(".python/test/test_msilib.py");
|
|
PYTHON_YOINK(".python/test/test_multibytecodec.py");
|
|
PYTHON_YOINK(".python/test/test_multiprocessing_fork.py");
|
|
PYTHON_YOINK(".python/test/test_multiprocessing_forkserver.py");
|
|
PYTHON_YOINK(".python/test/test_multiprocessing_main_handling.py");
|
|
PYTHON_YOINK(".python/test/test_multiprocessing_spawn.py");
|
|
PYTHON_YOINK(".python/test/test_netrc.py");
|
|
PYTHON_YOINK(".python/test/test_nis.py");
|
|
PYTHON_YOINK(".python/test/test_nntplib.py");
|
|
PYTHON_YOINK(".python/test/test_normalization.py");
|
|
PYTHON_YOINK(".python/test/test_ntpath.py");
|
|
PYTHON_YOINK(".python/test/test_numeric_tower.py");
|
|
PYTHON_YOINK(".python/test/test_opcodes.py");
|
|
PYTHON_YOINK(".python/test/test_openpty.py");
|
|
PYTHON_YOINK(".python/test/test_operator.py");
|
|
PYTHON_YOINK(".python/test/test_optparse.py");
|
|
PYTHON_YOINK(".python/test/test_ordered_dict.py");
|
|
PYTHON_YOINK(".python/test/test_os.py");
|
|
PYTHON_YOINK(".python/test/test_ossaudiodev.py");
|
|
PYTHON_YOINK(".python/test/test_osx_env.py");
|
|
PYTHON_YOINK(".python/test/test_parser.py");
|
|
PYTHON_YOINK(".python/test/test_pathlib.py");
|
|
PYTHON_YOINK(".python/test/test_pdb.py");
|
|
PYTHON_YOINK(".python/test/test_peepholer.py");
|
|
PYTHON_YOINK(".python/test/test_pickle.py");
|
|
PYTHON_YOINK(".python/test/test_pickletools.py");
|
|
PYTHON_YOINK(".python/test/test_pipes.py");
|
|
PYTHON_YOINK(".python/test/test_pkg.py");
|
|
PYTHON_YOINK(".python/test/test_pkgimport.py");
|
|
PYTHON_YOINK(".python/test/test_pkgutil.py");
|
|
PYTHON_YOINK(".python/test/test_platform.py");
|
|
PYTHON_YOINK(".python/test/test_plistlib.py");
|
|
PYTHON_YOINK(".python/test/test_poll.py");
|
|
PYTHON_YOINK(".python/test/test_popen.py");
|
|
PYTHON_YOINK(".python/test/test_poplib.py");
|
|
PYTHON_YOINK(".python/test/test_posix.py");
|
|
PYTHON_YOINK(".python/test/test_posixpath.py");
|
|
PYTHON_YOINK(".python/test/test_pow.py");
|
|
PYTHON_YOINK(".python/test/test_pprint.py");
|
|
PYTHON_YOINK(".python/test/test_print.py");
|
|
PYTHON_YOINK(".python/test/test_profile.py");
|
|
PYTHON_YOINK(".python/test/test_property.py");
|
|
PYTHON_YOINK(".python/test/test_pstats.py");
|
|
PYTHON_YOINK(".python/test/test_pty.py");
|
|
PYTHON_YOINK(".python/test/test_pulldom.py");
|
|
PYTHON_YOINK(".python/test/test_pwd.py");
|
|
PYTHON_YOINK(".python/test/test_py_compile.py");
|
|
PYTHON_YOINK(".python/test/test_pyclbr.py");
|
|
PYTHON_YOINK(".python/test/test_pydoc.py");
|
|
PYTHON_YOINK(".python/test/test_pyexpat.py");
|
|
PYTHON_YOINK(".python/test/test_queue.py");
|
|
PYTHON_YOINK(".python/test/test_quopri.py");
|
|
PYTHON_YOINK(".python/test/test_raise.py");
|
|
PYTHON_YOINK(".python/test/test_random.py");
|
|
PYTHON_YOINK(".python/test/test_range.py");
|
|
PYTHON_YOINK(".python/test/test_re.py");
|
|
PYTHON_YOINK(".python/test/test_readline.py");
|
|
PYTHON_YOINK(".python/test/test_regrtest.py");
|
|
PYTHON_YOINK(".python/test/test_repl.py");
|
|
PYTHON_YOINK(".python/test/test_reprlib.py");
|
|
PYTHON_YOINK(".python/test/test_resource.py");
|
|
PYTHON_YOINK(".python/test/test_richcmp.py");
|
|
PYTHON_YOINK(".python/test/test_rlcompleter.py");
|
|
PYTHON_YOINK(".python/test/test_robotparser.py");
|
|
PYTHON_YOINK(".python/test/test_runpy.py");
|
|
PYTHON_YOINK(".python/test/test_sax.py");
|
|
PYTHON_YOINK(".python/test/test_sched.py");
|
|
PYTHON_YOINK(".python/test/test_scope.py");
|
|
PYTHON_YOINK(".python/test/test_script_helper.py");
|
|
PYTHON_YOINK(".python/test/test_secrets.py");
|
|
PYTHON_YOINK(".python/test/test_select.py");
|
|
PYTHON_YOINK(".python/test/test_selectors.py");
|
|
PYTHON_YOINK(".python/test/test_set.py");
|
|
PYTHON_YOINK(".python/test/test_setcomps.py");
|
|
PYTHON_YOINK(".python/test/test_shelve.py");
|
|
PYTHON_YOINK(".python/test/test_shlex.py");
|
|
PYTHON_YOINK(".python/test/test_shutil.py");
|
|
PYTHON_YOINK(".python/test/test_signal.py");
|
|
PYTHON_YOINK(".python/test/test_site.py");
|
|
PYTHON_YOINK(".python/test/test_slice.py");
|
|
PYTHON_YOINK(".python/test/test_smtpd.py");
|
|
PYTHON_YOINK(".python/test/test_smtplib.py");
|
|
PYTHON_YOINK(".python/test/test_smtpnet.py");
|
|
PYTHON_YOINK(".python/test/test_sndhdr.py");
|
|
PYTHON_YOINK(".python/test/test_socket.py");
|
|
PYTHON_YOINK(".python/test/test_socketserver.py");
|
|
PYTHON_YOINK(".python/test/test_sort.py");
|
|
PYTHON_YOINK(".python/test/test_spwd.py");
|
|
PYTHON_YOINK(".python/test/test_sqlite.py");
|
|
PYTHON_YOINK(".python/test/test_ssl.py");
|
|
PYTHON_YOINK(".python/test/test_startfile.py");
|
|
PYTHON_YOINK(".python/test/test_stat.py");
|
|
PYTHON_YOINK(".python/test/test_statistics.py");
|
|
PYTHON_YOINK(".python/test/test_strftime.py");
|
|
PYTHON_YOINK(".python/test/test_string.py");
|
|
PYTHON_YOINK(".python/test/test_string_literals.py");
|
|
PYTHON_YOINK(".python/test/test_stringprep.py");
|
|
PYTHON_YOINK(".python/test/test_strptime.py");
|
|
PYTHON_YOINK(".python/test/test_strtod.py");
|
|
PYTHON_YOINK(".python/test/test_struct.py");
|
|
PYTHON_YOINK(".python/test/test_structmembers.py");
|
|
PYTHON_YOINK(".python/test/test_structseq.py");
|
|
PYTHON_YOINK(".python/test/test_subclassinit.py");
|
|
PYTHON_YOINK(".python/test/test_subprocess.py");
|
|
PYTHON_YOINK(".python/test/test_sunau.py");
|
|
PYTHON_YOINK(".python/test/test_sundry.py");
|
|
PYTHON_YOINK(".python/test/test_super.py");
|
|
PYTHON_YOINK(".python/test/test_support.py");
|
|
PYTHON_YOINK(".python/test/test_symbol.py");
|
|
PYTHON_YOINK(".python/test/test_symtable.py");
|
|
PYTHON_YOINK(".python/test/test_syntax.py");
|
|
PYTHON_YOINK(".python/test/test_sys.py");
|
|
PYTHON_YOINK(".python/test/test_sys_setprofile.py");
|
|
PYTHON_YOINK(".python/test/test_sys_settrace.py");
|
|
PYTHON_YOINK(".python/test/test_sysconfig.py");
|
|
PYTHON_YOINK(".python/test/test_syslog.py");
|
|
PYTHON_YOINK(".python/test/test_tarfile.py");
|
|
PYTHON_YOINK(".python/test/test_tcl.py");
|
|
PYTHON_YOINK(".python/test/test_telnetlib.py");
|
|
PYTHON_YOINK(".python/test/test_tempfile.py");
|
|
PYTHON_YOINK(".python/test/test_textwrap.py");
|
|
PYTHON_YOINK(".python/test/test_thread.py");
|
|
PYTHON_YOINK(".python/test/test_threaded_import.py");
|
|
PYTHON_YOINK(".python/test/test_threadedtempfile.py");
|
|
PYTHON_YOINK(".python/test/test_threading.py");
|
|
PYTHON_YOINK(".python/test/test_threading_local.py");
|
|
PYTHON_YOINK(".python/test/test_threadsignals.py");
|
|
PYTHON_YOINK(".python/test/test_time.py");
|
|
PYTHON_YOINK(".python/test/test_timeit.py");
|
|
PYTHON_YOINK(".python/test/test_timeout.py");
|
|
PYTHON_YOINK(".python/test/test_tix.py");
|
|
PYTHON_YOINK(".python/test/test_tk.py");
|
|
PYTHON_YOINK(".python/test/test_tokenize.py");
|
|
PYTHON_YOINK(".python/test/test_tools/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_tools/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_fixcid.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_gprof2html.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_i18n.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_md5sum.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_pdeps.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_pindent.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_reindent.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_sundry.py");
|
|
PYTHON_YOINK(".python/test/test_tools/test_unparse.py");
|
|
PYTHON_YOINK(".python/test/test_trace.py");
|
|
PYTHON_YOINK(".python/test/test_traceback.py");
|
|
PYTHON_YOINK(".python/test/test_tracemalloc.py");
|
|
PYTHON_YOINK(".python/test/test_ttk_guionly.py");
|
|
PYTHON_YOINK(".python/test/test_ttk_textonly.py");
|
|
PYTHON_YOINK(".python/test/test_tuple.py");
|
|
PYTHON_YOINK(".python/test/test_turtle.py");
|
|
PYTHON_YOINK(".python/test/test_typechecks.py");
|
|
PYTHON_YOINK(".python/test/test_types.py");
|
|
PYTHON_YOINK(".python/test/test_typing.py");
|
|
PYTHON_YOINK(".python/test/test_unary.py");
|
|
PYTHON_YOINK(".python/test/test_unicode.py");
|
|
PYTHON_YOINK(".python/test/test_unicode_file.py");
|
|
PYTHON_YOINK(".python/test/test_unicode_file_functions.py");
|
|
PYTHON_YOINK(".python/test/test_unicodedata.py");
|
|
PYTHON_YOINK(".python/test/test_unittest.py");
|
|
PYTHON_YOINK(".python/test/test_univnewlines.py");
|
|
PYTHON_YOINK(".python/test/test_unpack.py");
|
|
PYTHON_YOINK(".python/test/test_unpack_ex.py");
|
|
PYTHON_YOINK(".python/test/test_urllib.py");
|
|
PYTHON_YOINK(".python/test/test_urllib2.py");
|
|
PYTHON_YOINK(".python/test/test_urllib2_localnet.py");
|
|
PYTHON_YOINK(".python/test/test_urllib2net.py");
|
|
PYTHON_YOINK(".python/test/test_urllib_response.py");
|
|
PYTHON_YOINK(".python/test/test_urllibnet.py");
|
|
PYTHON_YOINK(".python/test/test_urlparse.py");
|
|
PYTHON_YOINK(".python/test/test_userdict.py");
|
|
PYTHON_YOINK(".python/test/test_userlist.py");
|
|
PYTHON_YOINK(".python/test/test_userstring.py");
|
|
PYTHON_YOINK(".python/test/test_utf8source.py");
|
|
PYTHON_YOINK(".python/test/test_uu.py");
|
|
PYTHON_YOINK(".python/test/test_uuid.py");
|
|
PYTHON_YOINK(".python/test/test_venv.py");
|
|
PYTHON_YOINK(".python/test/test_wait3.py");
|
|
PYTHON_YOINK(".python/test/test_wait4.py");
|
|
PYTHON_YOINK(".python/test/test_warnings/__init__.py");
|
|
PYTHON_YOINK(".python/test/test_warnings/__main__.py");
|
|
PYTHON_YOINK(".python/test/test_warnings/data/import_warning.py");
|
|
PYTHON_YOINK(".python/test/test_warnings/data/stacklevel.py");
|
|
PYTHON_YOINK(".python/test/test_wave.py");
|
|
PYTHON_YOINK(".python/test/test_weakref.py");
|
|
PYTHON_YOINK(".python/test/test_weakset.py");
|
|
PYTHON_YOINK(".python/test/test_webbrowser.py");
|
|
PYTHON_YOINK(".python/test/test_winconsoleio.py");
|
|
PYTHON_YOINK(".python/test/test_winreg.py");
|
|
PYTHON_YOINK(".python/test/test_winsound.py");
|
|
PYTHON_YOINK(".python/test/test_with.py");
|
|
PYTHON_YOINK(".python/test/test_wsgiref.py");
|
|
PYTHON_YOINK(".python/test/test_xdrlib.py");
|
|
PYTHON_YOINK(".python/test/test_xml_dom_minicompat.py");
|
|
PYTHON_YOINK(".python/test/test_xml_etree.py");
|
|
PYTHON_YOINK(".python/test/test_xml_etree_c.py");
|
|
PYTHON_YOINK(".python/test/test_xmlrpc_net.py");
|
|
PYTHON_YOINK(".python/test/test_yield_from.py");
|
|
PYTHON_YOINK(".python/test/test_zipapp.py");
|
|
PYTHON_YOINK(".python/test/test_zipfile.py");
|
|
PYTHON_YOINK(".python/test/test_zipfile64.py");
|
|
PYTHON_YOINK(".python/test/test_zipimport.py");
|
|
PYTHON_YOINK(".python/test/test_zipimport_support.py");
|
|
PYTHON_YOINK(".python/test/test_zlib.py");
|
|
PYTHON_YOINK(".python/test/testcodec.py");
|
|
PYTHON_YOINK(".python/test/tf_inherit_check.py");
|
|
PYTHON_YOINK(".python/test/threaded_import_hangers.py");
|
|
PYTHON_YOINK(".python/test/time_hashlib.py");
|
|
PYTHON_YOINK(".python/test/tracedmodules/__init__.py");
|
|
PYTHON_YOINK(".python/test/tracedmodules/testmod.py");
|
|
PYTHON_YOINK(".python/test/win_console_handler.py");
|
|
PYTHON_YOINK(".python/test/xmltests.py");
|
|
STATIC_YOINK(".python/test/");
|
|
STATIC_YOINK(".python/test/Sine-1000Hz-300ms.aif");
|
|
STATIC_YOINK(".python/test/__pycache__/");
|
|
STATIC_YOINK(".python/test/allsans.pem");
|
|
STATIC_YOINK(".python/test/audiodata/");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-alaw.aifc");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm16.aiff");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm16.au");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm16.wav");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm24.aiff");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm24.au");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm24.wav");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm32.aiff");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm32.au");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm32.wav");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm8.aiff");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm8.au");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-pcm8.wav");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-ulaw.aifc");
|
|
STATIC_YOINK(".python/test/audiodata/pluck-ulaw.au");
|
|
STATIC_YOINK(".python/test/audiotest.au");
|
|
STATIC_YOINK(".python/test/badcert.pem");
|
|
STATIC_YOINK(".python/test/badkey.pem");
|
|
STATIC_YOINK(".python/test/capath/");
|
|
STATIC_YOINK(".python/test/capath/4e1295a3.0");
|
|
STATIC_YOINK(".python/test/capath/5ed36f99.0");
|
|
STATIC_YOINK(".python/test/capath/6e88d7b8.0");
|
|
STATIC_YOINK(".python/test/capath/99d0fa06.0");
|
|
STATIC_YOINK(".python/test/capath/b1930218.0");
|
|
STATIC_YOINK(".python/test/capath/ceff1710.0");
|
|
STATIC_YOINK(".python/test/cfgparser.1");
|
|
STATIC_YOINK(".python/test/cfgparser.2");
|
|
STATIC_YOINK(".python/test/cfgparser.3");
|
|
STATIC_YOINK(".python/test/cjkencodings/");
|
|
STATIC_YOINK(".python/test/cjkencodings/big5-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/big5.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/big5hkscs-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/big5hkscs.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/cp949-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/cp949.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_jisx0213-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_jisx0213.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_jp-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_jp.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_kr-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/euc_kr.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gb18030-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gb18030.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gb2312-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gb2312.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gbk-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/gbk.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/hz-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/hz.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/iso2022_jp-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/iso2022_jp.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/iso2022_kr-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/iso2022_kr.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/johab-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/johab.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/shift_jis-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/shift_jis.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/shift_jisx0213-utf8.txt");
|
|
STATIC_YOINK(".python/test/cjkencodings/shift_jisx0213.txt");
|
|
STATIC_YOINK(".python/test/cmath_testcases.txt");
|
|
STATIC_YOINK(".python/test/crashers/");
|
|
STATIC_YOINK(".python/test/crashers/README");
|
|
STATIC_YOINK(".python/test/decimaltestdata/");
|
|
STATIC_YOINK(".python/test/decimaltestdata/abs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/add.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/and.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/base.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/clamp.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/class.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/compare.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/comparetotal.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/comparetotmag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/copy.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/copyabs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/copynegate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/copysign.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddAbs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddAdd.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddAnd.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddBase.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCanonical.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddClass.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCompare.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCompareSig.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCompareTotal.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCompareTotalMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCopy.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCopyAbs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCopyNegate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddCopySign.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddDivide.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddDivideInt.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddEncode.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddFMA.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddInvert.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddLogB.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMax.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMaxMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMin.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMinMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMinus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddMultiply.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddNextMinus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddNextPlus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddNextToward.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddOr.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddPlus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddQuantize.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddReduce.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddRemainder.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddRemainderNear.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddRotate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddSameQuantum.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddScaleB.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddShift.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddSubtract.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddToIntegral.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ddXor.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/decDouble.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/decQuad.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/decSingle.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/divide.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/divideint.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqAbs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqAdd.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqAnd.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqBase.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCanonical.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqClass.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCompare.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCompareSig.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCompareTotal.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCompareTotalMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCopy.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCopyAbs.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCopyNegate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqCopySign.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqDivide.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqDivideInt.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqEncode.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqFMA.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqInvert.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqLogB.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMax.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMaxMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMin.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMinMag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMinus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqMultiply.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqNextMinus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqNextPlus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqNextToward.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqOr.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqPlus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqQuantize.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqReduce.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqRemainder.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqRemainderNear.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqRotate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqSameQuantum.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqScaleB.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqShift.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqSubtract.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqToIntegral.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dqXor.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dsBase.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/dsEncode.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/exp.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/extra.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/fma.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/inexact.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/invert.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/ln.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/log10.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/logb.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/max.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/maxmag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/min.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/minmag.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/minus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/multiply.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/nextminus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/nextplus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/nexttoward.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/or.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/plus.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/power.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/powersqrt.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/quantize.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/randomBound32.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/randoms.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/reduce.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/remainder.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/remainderNear.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/rescale.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/rotate.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/rounding.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/samequantum.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/scaleb.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/shift.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/squareroot.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/subtract.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/testall.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/tointegral.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/tointegralx.decTest");
|
|
STATIC_YOINK(".python/test/decimaltestdata/xor.decTest");
|
|
STATIC_YOINK(".python/test/dtracedata/");
|
|
STATIC_YOINK(".python/test/dtracedata/assert_usable.d");
|
|
STATIC_YOINK(".python/test/dtracedata/assert_usable.stp");
|
|
STATIC_YOINK(".python/test/dtracedata/call_stack.d");
|
|
STATIC_YOINK(".python/test/dtracedata/call_stack.d.expected");
|
|
STATIC_YOINK(".python/test/dtracedata/call_stack.stp");
|
|
STATIC_YOINK(".python/test/dtracedata/call_stack.stp.expected");
|
|
STATIC_YOINK(".python/test/dtracedata/gc.d");
|
|
STATIC_YOINK(".python/test/dtracedata/gc.d.expected");
|
|
STATIC_YOINK(".python/test/dtracedata/gc.stp");
|
|
STATIC_YOINK(".python/test/dtracedata/gc.stp.expected");
|
|
STATIC_YOINK(".python/test/dtracedata/line.d");
|
|
STATIC_YOINK(".python/test/dtracedata/line.d.expected");
|
|
STATIC_YOINK(".python/test/eintrdata/");
|
|
STATIC_YOINK(".python/test/empty.vbs");
|
|
STATIC_YOINK(".python/test/exception_hierarchy.txt");
|
|
STATIC_YOINK(".python/test/ffdh3072.pem");
|
|
STATIC_YOINK(".python/test/floating_points.txt");
|
|
STATIC_YOINK(".python/test/formatfloat_testcases.txt");
|
|
STATIC_YOINK(".python/test/ieee754.txt");
|
|
STATIC_YOINK(".python/test/imghdrdata/");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.bmp");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.exr");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.gif");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.jpg");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.pbm");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.pgm");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.png");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.ppm");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.ras");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.sgi");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.tiff");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.webp");
|
|
STATIC_YOINK(".python/test/imghdrdata/python.xbm");
|
|
STATIC_YOINK(".python/test/keycert.passwd.pem");
|
|
STATIC_YOINK(".python/test/keycert.pem");
|
|
STATIC_YOINK(".python/test/keycert2.pem");
|
|
STATIC_YOINK(".python/test/keycert3.pem");
|
|
STATIC_YOINK(".python/test/keycert4.pem");
|
|
STATIC_YOINK(".python/test/leakers/");
|
|
STATIC_YOINK(".python/test/leakers/README.txt");
|
|
STATIC_YOINK(".python/test/libregrtest/");
|
|
STATIC_YOINK(".python/test/libregrtest/__pycache__/");
|
|
STATIC_YOINK(".python/test/mailcap.txt");
|
|
STATIC_YOINK(".python/test/math_testcases.txt");
|
|
STATIC_YOINK(".python/test/mime.types");
|
|
STATIC_YOINK(".python/test/nokia.pem");
|
|
STATIC_YOINK(".python/test/nullbytecert.pem");
|
|
STATIC_YOINK(".python/test/nullcert.pem");
|
|
STATIC_YOINK(".python/test/pstats.pck");
|
|
STATIC_YOINK(".python/test/pycacert.pem");
|
|
STATIC_YOINK(".python/test/pycakey.pem");
|
|
STATIC_YOINK(".python/test/randv2_32.pck");
|
|
STATIC_YOINK(".python/test/randv2_64.pck");
|
|
STATIC_YOINK(".python/test/randv3.pck");
|
|
STATIC_YOINK(".python/test/recursion.tar");
|
|
STATIC_YOINK(".python/test/revocation.crl");
|
|
STATIC_YOINK(".python/test/selfsigned_pythontestdotnet.pem");
|
|
STATIC_YOINK(".python/test/sgml_input.html");
|
|
STATIC_YOINK(".python/test/sndhdrdata/");
|
|
STATIC_YOINK(".python/test/sndhdrdata/README");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.8svx");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.aifc");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.aiff");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.au");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.hcom");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.sndt");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.voc");
|
|
STATIC_YOINK(".python/test/sndhdrdata/sndhdr.wav");
|
|
STATIC_YOINK(".python/test/ssl_cert.pem");
|
|
STATIC_YOINK(".python/test/ssl_key.passwd.pem");
|
|
STATIC_YOINK(".python/test/ssl_key.pem");
|
|
STATIC_YOINK(".python/test/subprocessdata/");
|
|
STATIC_YOINK(".python/test/support/");
|
|
STATIC_YOINK(".python/test/support/__pycache__/");
|
|
STATIC_YOINK(".python/test/talos-2019-0758.pem");
|
|
STATIC_YOINK(".python/test/test_asyncio/");
|
|
STATIC_YOINK(".python/test/test_difflib_expect.html");
|
|
STATIC_YOINK(".python/test/test_doctest.txt");
|
|
STATIC_YOINK(".python/test/test_doctest2.txt");
|
|
STATIC_YOINK(".python/test/test_doctest3.txt");
|
|
STATIC_YOINK(".python/test/test_doctest4.txt");
|
|
STATIC_YOINK(".python/test/test_email/");
|
|
STATIC_YOINK(".python/test/test_email/data/");
|
|
STATIC_YOINK(".python/test/test_email/data/PyBanner048.gif");
|
|
STATIC_YOINK(".python/test/test_email/data/audiotest.au");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_01.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_02.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_03.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_04.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_05.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_06.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_07.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_08.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_09.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_10.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_11.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_12.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_12a.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_13.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_14.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_15.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_16.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_17.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_18.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_19.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_20.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_21.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_22.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_23.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_24.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_25.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_26.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_27.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_28.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_29.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_30.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_31.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_32.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_33.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_34.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_35.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_36.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_37.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_38.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_39.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_40.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_41.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_42.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_43.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_44.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_45.txt");
|
|
STATIC_YOINK(".python/test/test_email/data/msg_46.txt");
|
|
STATIC_YOINK(".python/test/test_import/");
|
|
STATIC_YOINK(".python/test/test_import/data/");
|
|
STATIC_YOINK(".python/test/test_import/data/circular_imports/");
|
|
STATIC_YOINK(".python/test/test_import/data/circular_imports/subpkg/");
|
|
STATIC_YOINK(".python/test/test_import/data/package/");
|
|
STATIC_YOINK(".python/test/test_import/data/package2/");
|
|
STATIC_YOINK(".python/test/test_importlib/");
|
|
STATIC_YOINK(".python/test/test_importlib/builtin/");
|
|
STATIC_YOINK(".python/test/test_importlib/extension/");
|
|
STATIC_YOINK(".python/test/test_importlib/frozen/");
|
|
STATIC_YOINK(".python/test/test_importlib/import_/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/both_portions/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/both_portions/foo/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/missing_directory.zip");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/module_and_namespace_package/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/module_and_namespace_package/a_test/empty");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/nested_portion1.zip");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/not_a_namespace_pkg/foo/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/portion1/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/portion1/foo/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/portion2/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/portion2/foo/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project1/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project1/parent/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project1/parent/child/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project2/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project2/parent/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project2/parent/child/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project3/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project3/parent/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/project3/parent/child/");
|
|
STATIC_YOINK(".python/test/test_importlib/namespace_pkgs/top_level_portion1.zip");
|
|
STATIC_YOINK(".python/test/test_importlib/source/");
|
|
STATIC_YOINK(".python/test/test_json/");
|
|
STATIC_YOINK(".python/test/test_tools/");
|
|
STATIC_YOINK(".python/test/test_warnings/");
|
|
STATIC_YOINK(".python/test/test_warnings/data/");
|
|
STATIC_YOINK(".python/test/testtar.tar");
|
|
STATIC_YOINK(".python/test/tokenize_tests-latin1-coding-cookie-and-utf8-bom-sig.txt");
|
|
STATIC_YOINK(".python/test/tokenize_tests-no-coding-cookie-and-utf8-bom-sig-only.txt");
|
|
STATIC_YOINK(".python/test/tokenize_tests-utf8-coding-cookie-and-no-utf8-bom-sig.txt");
|
|
STATIC_YOINK(".python/test/tokenize_tests-utf8-coding-cookie-and-utf8-bom-sig.txt");
|
|
STATIC_YOINK(".python/test/tokenize_tests.txt");
|
|
STATIC_YOINK(".python/test/tracedmodules/");
|
|
STATIC_YOINK(".python/test/xmltestdata/");
|
|
STATIC_YOINK(".python/test/xmltestdata/expat224_utf8_bug.xml");
|
|
STATIC_YOINK(".python/test/xmltestdata/simple-ns.xml");
|
|
STATIC_YOINK(".python/test/xmltestdata/simple.xml");
|
|
STATIC_YOINK(".python/test/xmltestdata/test.xml");
|
|
STATIC_YOINK(".python/test/xmltestdata/test.xml.out");
|
|
STATIC_YOINK(".python/test/zip_cp437_header.zip");
|
|
STATIC_YOINK(".python/test/zipdir.zip");
|
|
|
|
void doge(void) {
|
|
PyErr_Format(PyExc_ValueError, "the doge");
|
|
}
|