cpython/Lib/test
Cody Maloney db4b1948bc
gh-143008: Fix Null pointer dereferences in TextIOWrapper underlying stream access (#145957)
TextIOWrapper keeps its underlying stream in a member called
`self->buffer`. That stream can be detached by user code, such as custom
`.flush` implementations resulting in `self->buffer` being set to NULL.
The implementation often checked at the start of functions if
`self->buffer` is in a good state, but did not always recheck after
other Python code was called which could modify `self->buffer`.

The cases which need to be re-checked are hard to spot so rather than
rely on reviewer effort create better safety by making all self->buffer
access go through helper functions.

Thank you yihong0618 for the test, NEWS and initial implementation in
gh-143041.

Co-authored-by: yihong0618 <zouzou0208@gmail.com>
Co-authored-by: Victor Stinner <vstinner@python.org>
2026-06-09 12:31:44 +02:00
..
archivetestdata
audiodata
audit_test_data
certdata
cjkencodings
configdata
crashers
data
decimaltestdata
dtracedata gh-98894: Restore function entry/exit DTrace probes (#142397) 2026-05-05 00:29:55 +00:00
encoded_modules
leakers
libregrtest gh-150114: Fix get_process_memory_usage() on Windows (#150399) 2026-05-25 14:04:37 +00:00
mathdata gh-150534: Add C23 half-turn trigonometric *pi functions (GH-150555) 2026-06-06 10:19:45 +00:00
regrtestdata/import_from_tests
subprocessdata
support gh-84649: Use statx() in TimedRotatingFileHandler if available (ПР-150968) 2026-06-06 11:49:07 +03:00
test_ast bpo-38131: Improve messages when generating AST nodes from objects with wrong field values (GH-17715) 2026-06-04 10:58:51 +00:00
test_asyncio gh-150107: Fix asyncio sendfile fallback ignoring non-zero offset (#150270) 2026-05-29 15:10:57 +05:30
test_capi gh-149335: Avoid JIT trace buffer asserts with overhead above FITNESS_INITIAL (GH-149633) 2026-05-21 15:57:31 +01:00
test_cext gh-149044: Implement PEP 820 – PySlot: Unified slot system for the C API (GH-149055) 2026-05-05 09:18:04 +02:00
test_concurrent_futures gh-149879: Fix test_concurrent_futures on Cygwin (#150415) 2026-05-25 23:04:14 +02:00
test_cppext gh-148690: Build Windows freethreaded binaries into separate directory and include python3t.dll on GIL-enabled (GH-149218) 2026-05-04 17:45:08 +01:00
test_ctypes gh-148675: Use a string for ctypes cparam tag (#149778) 2026-05-15 13:25:09 +02:00
test_dataclasses gh-79413: Add qualname parameter to dataclass.make_dataclass. (GH-150026) 2026-05-18 19:55:47 -04:00
test_doctest
test_email gh-53144: Improve charset support in the email package (GH-149942) 2026-06-05 15:53:59 +03:00
test_free_threading gh-150411: fix gc_generation.count race in free-threading (#150413) 2026-06-06 17:03:04 +00:00
test_future_stmt
test_gdb Skip test_jit when the JIT backend is "interpreter" (GH-149423) 2026-05-06 09:20:33 +01:00
test_import gh-150633: Minor improvement of a newly added test (#151103) 2026-06-08 19:21:00 +00:00
test_importlib GH-83065: Fix import deadlock by implementing hierarchical module locking (GH-137196) 2026-04-28 01:06:23 -07:00
test_inspect gh-149083: use sentinel to fix _functools.reduce() signature (#149591) 2026-05-10 15:22:16 -07:00
test_interpreters
test_io gh-143008: Fix Null pointer dereferences in TextIOWrapper underlying stream access (#145957) 2026-06-09 12:31:44 +02:00
test_json gh-149056: Properly pass array_hook in json.load() to json.loads() (GH-149057) 2026-05-29 22:53:21 +03:00
test_lazy_import gh-149977: Fix extra output of -m test test_lazy_import, again (#150965) 2026-06-05 15:21:10 +00:00
test_module
test_multiprocessing_fork
test_multiprocessing_forkserver gh-149879: Fix multiprocessing tests on Cygwin (#150031) 2026-05-19 00:45:35 +02:00
test_multiprocessing_spawn
test_os gh-151019: Fix test_os on 32-bit FreeBSD (#151087) 2026-06-08 18:57:07 +02:00
test_pathlib gh-86533: Make Path.mkdir parent_mode tests umask-independent (#150040) 2026-05-19 01:19:06 +00:00
test_peg_generator
test_profiling gh-150662: Stop unbounded memory growth in Tachyon --gecko collector (#150845) 2026-06-06 02:27:41 +00:00
test_pydoc gh-142349: Add help("lazy") support (#149886) 2026-05-15 16:30:40 +00:00
test_pyrepl gh-130472: Use fancycompleter in import completions (#148188) 2026-05-05 01:36:43 +00:00
test_sqlite3 gh-150913: Fix sqlite3.Blob validation for empty slice assignment (GH-150915) 2026-06-04 16:41:47 +03:00
test_string
test_tkinter gh-146531: Skip hanging wm iconbitmap test on macOS 26 Intel (#148032) 2026-05-18 14:57:02 +00:00
test_tomllib gh-149231: tomllib: Limit the number of parts in a key (GH-149233) 2026-05-04 13:49:07 +02:00
test_tools
test_ttk
test_unittest gh-149189: Revert "Modern defaults for pprint (#149190)" (#150249) 2026-05-22 23:22:03 +03:00
test_warnings gh-143231: Add the module attribute to warnings.WarningMessage (GH-149298) 2026-05-03 09:35:47 +00:00
test_zipfile gh-84353: Preserve non-UTF-8 filenames when appending to ZipFile (GH-150091) 2026-05-27 17:56:38 +00:00
test_zoneinfo
tkinterdata
tokenizedata
tracedmodules
translationdata
typinganndata
wheeldata
xmltestdata
zipimport_data
.ruff.toml gh-145239: Accept unary plus literal pattern (#148566) 2026-04-23 22:07:28 +03:00
__init__.py
__main__.py
_code_definitions.py
_crossinterp_definitions.py
_test_atexit.py
_test_eintr.py
_test_embed_structseq.py
_test_monitoring_shutdown.py
_test_multiprocessing.py gh-149879: Fix multiprocessing resource tracker tests on Cygwin (#150440) 2026-05-26 04:23:52 +02:00
_test_venv_multiprocessing.py
archiver_tests.py
audiotests.py
audit-tests.py gh-149474: use Py_fopen in Binary{Reader,Writer} for audit hook and path-like support (#149524) 2026-05-09 01:01:35 +01:00
autotest.py
bisect_cmd.py
clinic.test.c
cov.py
curses_tests.py
datetimetester.py GH-70647: Remove support for %d (and deprecate for %e) without year in strptime() (GH-144570) 2026-04-14 17:15:27 -07:00
dis_module.py
empty.vbs
exception_hierarchy.txt
fork_wait.py
levenshtein_examples.json
list_tests.py
lock_tests.py
mapping_tests.py
memory_watchdog.py gh-150114: Use get_process_memory_usage() in memory watchdog (#150402) 2026-05-25 21:15:12 +00:00
mime.types
mime.types2 gh-93417: Improve test_mimetypes (GH-150725) 2026-06-01 23:02:40 +03:00
mock_socket.py
mp_fork_bomb.py
mp_preload.py
mp_preload_flush.py
mp_preload_large_sysargv.py
mp_preload_main.py
mp_preload_sysargv.py
multibytecodec_support.py
NormalizationTest-3.2.0.txt
picklecommon.py
pickletester.py gh-148914: Fix memoization of in-band PickleBuffer in the Python implementation (GH-149052) 2026-05-02 12:04:05 +03:00
profilee.py
pstats.pck
pyclbr_input.py
pythoninfo.py
randv2_32.pck
randv2_64.pck
randv3.pck
re_tests.py
regrtest.py
relimport.py
seq_tests.py
signalinterproctester.py
ssl_servers.py
ssltests.py
string_tests.py
test___all__.py
test__colorize.py gh-137855: Lazy import inspect module in dataclasses (#144387) 2026-04-25 22:57:38 -07:00
test__interpchannels.py
test__interpreters.py
test__locale.py gh-149879: Fix test__locale on Cygwin (#150248) 2026-05-22 21:31:12 +02:00
test__opcode.py
test__osx_support.py
test_abc.py gh-149609: Raise deprecation warnings for abc.{abstractclassmethod,abstractstaticmethod,abstractproperty} (#149636) 2026-05-31 07:26:52 +00:00
test_abstract_numbers.py
test_android.py
test_annotationlib.py gh-141388: Improve docs/tests for non-function callables as annotate functions (#142327) 2026-05-02 18:21:59 -07:00
test_apple.py
test_argparse.py gh-149614 - Restore deepcopiability of argparse.ArgumentParser instances (#149617) 2026-05-11 15:28:23 +00:00
test_array.py gh-80480: Remove deprecated 'u' array type code (#149535) 2026-06-01 11:57:55 +00:00
test_asdl_parser.py
test_asyncgen.py
test_atexit.py
test_audit.py
test_augassign.py
test_base64.py
test_baseexception.py
test_bdb.py
test_bigaddrspace.py
test_bigmem.py
test_binascii.py gh-148093: Raise binascii.Error from binascii.a2b_uu() on empty input (GH-149077) 2026-05-04 12:40:52 +03:00
test_binop.py
test_bisect.py
test_bool.py
test_buffer.py gh-80480: Remove deprecated 'u' array type code (#149535) 2026-06-01 11:57:55 +00:00
test_build_details.py
test_builtin.py gh-85989: Add skip_if_double_rounding to test.support (#150219) 2026-05-28 13:42:39 +02:00
test_bytes.py gh-148605: Remove irepeat() thread test from test_bytes (#150576) 2026-05-31 14:57:10 +05:30
test_bz2.py gh-150599: Prevent bz2 decompressor reuse after errors (#150600) 2026-06-07 08:19:05 -07:00
test_c_locale_coercion.py gh-149879: Fix test_c_locale_coercion on Cygwin (#150250) 2026-05-22 15:47:38 +02:00
test_c_stack_unwind.py Rename fp unwind test module to C stack unwind (#149563) 2026-05-08 14:58:38 +01:00
test_calendar.py gh-148352: Add more colour to calendar CLI output (#148354) 2026-05-04 15:14:57 +03:00
test_call.py
test_charmapcodec.py
test_class.py
test_clinic.py
test_cmath.py gh-148868: Increase test coverage for cmath.isinf (#148869) 2026-04-27 09:22:20 +02:00
test_cmd.py
test_cmd_line.py gh-150436: Skip subprocess test on STATUS_DLL_INIT_FAILED (#150704) 2026-06-01 14:50:15 +00:00
test_cmd_line_script.py
test_code.py gh-148871: extend and improve LOAD_COMMON_CONSTANT (GH-148971) 2026-05-02 19:59:51 +01:00
test_code_module.py
test_codeccallbacks.py
test_codecencodings_cn.py
test_codecencodings_hk.py
test_codecencodings_iso2022.py
test_codecencodings_jp.py
test_codecencodings_kr.py
test_codecencodings_tw.py
test_codecmaps_cn.py
test_codecmaps_hk.py
test_codecmaps_jp.py
test_codecmaps_kr.py
test_codecmaps_tw.py
test_codecs.py gh-62259: Add support of multi-byte encodings in the XML parser (GH-149860) 2026-05-26 19:40:25 +00:00
test_codeop.py
test_collections.py
test_colorsys.py
test_compare.py
test_compile.py gh-148871: extend and improve LOAD_COMMON_CONSTANT (GH-148971) 2026-05-02 19:59:51 +01:00
test_compileall.py
test_compiler_assemble.py
test_compiler_codegen.py gh-150027: Avoid copying during construction of frozenset objects (GH-150028) 2026-05-19 13:57:37 -04:00
test_complex.py gh-143231: Do not swallow not matched warnings in assertWarns*() (GH-149229) 2026-05-03 10:24:57 +00:00
test_configparser.py
test_contains.py
test_context.py
test_contextlib.py gh-125862: Keep ContextDecorator open across generator/coroutine execution (GH-136212) 2026-04-28 05:26:38 +00:00
test_contextlib_async.py gh-125862: Keep ContextDecorator open across generator/coroutine execution (GH-136212) 2026-04-28 05:26:38 +00:00
test_copy.py
test_copyreg.py
test_coroutines.py
test_crossinterp.py gh-149219: Test frozendict in Lib/test/test_crossinterp.py (#149220) 2026-05-21 12:28:38 +03:00
test_csv.py
test_curses.py
test_datetime.py
test_dbm.py
test_dbm_dumb.py
test_dbm_gnu.py
test_dbm_ndbm.py
test_dbm_sqlite3.py
test_decimal.py
test_decorators.py
test_defaultdict.py gh-149534: Fix unification of defaultdict and frozendict with | (#149539) 2026-06-01 16:26:49 +03:00
test_deque.py gh-150750: Fix a race condition in deque.index with free-threading (#150779) 2026-06-04 13:31:31 +00:00
test_descr.py
test_descrtut.py gh-149189: Revert "Modern defaults for pprint (#149190)" (#150249) 2026-05-22 23:22:03 +03:00
test_devpoll.py
test_dict.py gh-149807: Fix hash(frozendict): compute (key, value) pair hash (#149841) 2026-05-20 13:22:57 +02:00
test_dictcomps.py
test_dictviews.py
test_difflib.py gh-144384: Lazily import _colorize (#149318) 2026-05-06 16:07:43 +00:00
test_difflib_expect.html
test_dis.py GH-150478: Add "show_jit" option to dis.dis to show jit entry points (GH-150554) 2026-06-01 17:52:40 +01:00
test_docxmlrpc.py
test_dtrace.py gh-98894: Restore function entry/exit DTrace probes (#142397) 2026-05-05 00:29:55 +00:00
test_dynamic.py
test_dynamicclassattribute.py
test_eintr.py
test_embed.py gh-149879: Fix test_embed on Cygwin (#150441) 2026-05-26 16:33:08 +00:00
test_ensurepip.py
test_enum.py gh-139398: [Enum] Add supported sunder names to __dir__ for REPL completions (GH-139985) 2026-05-28 12:55:38 -07:00
test_enumerate.py
test_eof.py
test_epoll.py
test_errno.py
test_except_star.py
test_exception_group.py
test_exception_hierarchy.py
test_exception_variations.py
test_exceptions.py
test_extcall.py
test_external_inspection.py gh-149584: Fix excessive overhead in the Tachyon profiler regarding the cache behavior (#149649) 2026-05-20 04:32:08 -07:00
test_faulthandler.py gh-149085: Add max_threads keyword to faulthandler.dump_traceback() (GH-149106) 2026-04-30 09:27:57 -04:00
test_fcntl.py
test_file_eintr.py
test_filecmp.py
test_fileinput.py
test_fileutils.py
test_finalization.py
test_float.py
test_flufl.py
test_fnmatch.py
test_fork1.py
test_format.py gh-119949: Refactor test_exc() helper in test_format.py (GH-135452) 2026-05-24 10:24:59 +00:00
test_fractions.py
test_frame.py
test_frozen.py
test_fstring.py
test_ftplib.py gh-149879: Fix test_ftplib on Cygwin (#150431) 2026-05-26 00:09:41 +02:00
test_funcattrs.py
test_functools.py gh-149537: Remove kw parameters from python version of reduce (#149538) 2026-05-08 18:34:48 +03:00
test_gc.py GH-148726: Add heap_size to generational GC (#149195) 2026-05-04 22:14:45 +01:00
test_gc_stats.py GH-148726: Add heap_size to generational GC (#149195) 2026-05-04 22:14:45 +01:00
test_generated_cases.py gh-149358: Generating JIT recorder transformers and stabilizing family layouts (GH-149359) 2026-05-21 17:06:52 +01:00
test_generator_stop.py
test_generators.py
test_genericalias.py gh-150146: Fix NULL dereference in _Py_subs_parameters (#150147) 2026-05-20 16:27:55 +03:00
test_genericclass.py
test_genericpath.py
test_genexps.py
test_getopt.py
test_getpass.py
test_getpath.py
test_gettext.py
test_glob.py
test_global.py
test_grammar.py
test_graphlib.py
test_grp.py gh-149879: Fix test_grp on Cygwin (#150495) 2026-05-26 21:16:16 +00:00
test_gzip.py gh-91372: Add mtime to gzip.open() (GH-32310) 2026-05-22 15:14:25 +03:00
test_hash.py
test_hashlib.py
test_heapq.py
test_hmac.py
test_html.py
test_htmlparser.py
test_http_cookiejar.py
test_http_cookies.py gh-149144: Use decodeURIComponent() for UTF-8 support in js_output() (GH-149157) 2026-05-14 23:10:39 +02:00
test_httplib.py
test_httpservers.py gh-149879: Fix test_httpservers on Cygwin (#150417) 2026-05-25 19:50:35 +00:00
test_idle.py
test_imaplib.py gh-91099: fix[imaplib]: call Exception with string instance (#31823) 2026-06-02 16:42:04 -04:00
test_index.py
test_int.py
test_int_literal.py
test_ioctl.py gh-149879: Fix test_termios and test_ioctl on Cygwin (#150412) 2026-05-25 19:06:28 +02:00
test_ipaddress.py
test_isinstance.py
test_iter.py
test_iterlen.py
test_itertools.py
test_keyword.py
test_keywordonlyarg.py
test_kqueue.py
test_launcher.py
test_linecache.py
test_list.py
test_listcomps.py
test_lltrace.py
test_locale.py gh-140924: In locale module, add missing names to __all__ (GH-140925) 2026-05-11 17:21:03 +03:00
test_logging.py gh-84649: Use statx() in TimedRotatingFileHandler if available (ПР-150968) 2026-06-06 11:49:07 +03:00
test_long.py
test_longexp.py
test_lzma.py gh-115988: Add ARM64 and RISCV BCJ filters constants in lzma module (GH-115989) 2026-05-28 08:05:03 -07:00
test_mailbox.py
test_marshal.py gh-148653: Fix reference leaks in test_marshal introduced in gh-148698 (GH-148725) 2026-04-18 12:11:14 +00:00
test_math.py gh-150534: Add C23 half-turn trigonometric *pi functions (GH-150555) 2026-06-06 10:19:45 +00:00
test_math_integer.py
test_math_property.py
test_memoryview.py gh-148675: Remove F and D formats from array and memoryview (GH-149368) 2026-05-04 17:26:30 +02:00
test_metaclass.py
test_mimetypes.py gh-93417: Improve test_mimetypes (GH-150725) 2026-06-01 23:02:40 +03:00
test_minidom.py
test_mmap.py gh-151021: Fix mmap empty searches past the end (GH-151023) 2026-06-07 16:01:24 +03:00
test_modulefinder.py
test_monitoring.py gh-142186: Allow all PEP-669 events to be per-code object and disableable (GH-146182) 2026-04-22 09:08:23 +01:00
test_msvcrt.py gh-150436: Skip subprocess test on STATUS_DLL_INIT_FAILED (#150704) 2026-06-01 14:50:15 +00:00
test_multibytecodec.py
test_multiprocessing_main_handling.py
test_named_expressions.py
test_netrc.py
test_ntpath.py
test_nturl2path.py
test_numeric_tower.py
test_opcache.py gh-100239: specialize mixed int/float inplace binary ops (GH-149413) 2026-05-06 13:59:08 +01:00
test_opcodes.py
test_openpty.py
test_operator.py
test_optimizer.py
test_optparse.py
test_ordered_dict.py
test_osx_env.py
test_patma.py gh-145239: Accept unary plus literal pattern (#148566) 2026-04-23 22:07:28 +03:00
test_pdb.py gh-148615: Handle -- separator in pdb argument parsing (#148624) 2026-05-05 21:22:58 -07:00
test_peepholer.py gh-148871: Add CONSTANT_EMPTY_TUPLE to LOAD_COMMON_CONSTANT (GH-149688) 2026-05-21 15:54:46 +01:00
test_pep646_syntax.py
test_perf_profiler.py gh-150389: Make perf profiler tests resilient (#150437) 2026-05-27 13:22:56 +01:00
test_perfmaps.py GH-126910: Add gdb support for unwinding JIT frames (#146071) 2026-05-02 13:42:03 +00:00
test_pickle.py gh-149189: Revert "Modern defaults for pprint (#149190)" (#150249) 2026-05-22 23:22:03 +03:00
test_picklebuffer.py
test_pickletools.py gh-149026: Add colour to pickletools CLI output (#149027) 2026-04-29 18:33:05 +03:00
test_pkg.py
test_pkgutil.py gh-148641: Implement PEP 829 - startup configuration files (#149109) 2026-05-03 17:17:29 +00:00
test_platform.py gh-145177: Bump emscripten version to 4.0.19 (#150926) 2026-06-05 13:59:43 +08:00
test_plistlib.py
test_poll.py
test_popen.py
test_poplib.py gh-148600: Add OpenSSL 4.0.0 support to test configurations (#149356) 2026-05-04 16:21:04 +03:00
test_positional_only_arg.py
test_posixpath.py
test_pow.py
test_pprint.py gh-149189: Revert "Modern defaults for pprint (#149190)" (#150249) 2026-05-22 23:22:03 +03:00
test_print.py
test_profile.py
test_property.py
test_pstats.py
test_pty.py
test_pulldom.py
test_pwd.py gh-80198: Improve test_pwd and test_grp (GH-150380) 2026-05-25 16:17:38 +03:00
test_py_compile.py
test_pyclbr.py
test_pyexpat.py gh-150560: Fix crash in XML parser on invalid XML with multi-byte encoding (GH-150568) 2026-05-30 00:23:32 +03:00
test_pystats.py
test_queue.py
test_quopri.py
test_raise.py
test_random.py gh-149221:Fix binomialvariate Function for random module (gh-149222) 2026-05-02 07:55:43 -05:00
test_range.py
test_re.py gh-80480: Remove deprecated 'u' array type code (#149535) 2026-06-01 11:57:55 +00:00
test_readline.py
test_regrtest.py gh-150046: Fix test_add_python_opts to ignore PYTHON* env vars (#150089) 2026-05-28 18:48:51 +02:00
test_remote_pdb.py
test_repl.py gh-140287: Handle PYTHONSTARTUP script exceptions in the asyncio REPL (#140288) 2026-04-25 15:24:40 +01:00
test_reprlib.py
test_resource.py gh-149879: Fix test_resource on Cygwin (#149903) 2026-05-15 23:09:36 +00:00
test_richcmp.py
test_rlcompleter.py gh-112821: Fix rlcompleter failures on objects with descriptors (#149577) 2026-05-10 21:44:59 -04:00
test_robotparser.py gh-79638: Test other HTTP error codes besides 403 in test_robotparser (#149569) 2026-05-08 20:24:34 +00:00
test_runpy.py gh-149117: Set ImportError.name on errors from runpy.run_module/run_path (gh-149159) 2026-05-02 12:27:23 +10:00
test_samply_profiler.py gh-150723: Fix perf jitdump files on macOS (#150728) 2026-06-03 01:15:34 +01:00
test_sax.py
test_sched.py
test_scope.py
test_script_helper.py
test_secrets.py
test_select.py
test_selectors.py
test_set.py
test_setcomps.py
test_shelve.py
test_shlex.py gh-119670: Add force keyword only argument to shlex.quote (#148846) 2026-06-04 11:06:02 +02:00
test_shutil.py gh-149835: Use realpath() instead of abspath() in shutil.move() (GH-149986) 2026-06-06 13:04:23 +03:00
test_signal.py gh-149879: Fix test_signal on Cygwin (#149896) 2026-05-15 21:32:10 +02:00
test_site.py gh-150228: Improve the PEP 829 batch processing APIs (#150542) 2026-06-01 18:43:18 -07:00
test_slice.py
test_smtplib.py
test_smtpnet.py
test_socket.py gh-139310: Revert test skip for test_aead_aes_gcm (GH-139552) (GH-149687) 2026-05-26 14:36:36 +02:00
test_socketserver.py
test_sort.py
test_source_encoding.py
test_ssl.py gh-148508: Add another common pattern for iOS SSL failures to test_ssl (#150442) 2026-06-01 11:37:53 +02:00
test_stable_abi_ctypes.py gh-149189: Revert "Modern defaults for pprint (#149190)" (#150249) 2026-05-22 23:22:03 +03:00
test_startfile.py
test_stat.py
test_statistics.py gh-85989: Add skip_if_double_rounding to test.support (#150219) 2026-05-28 13:42:39 +02:00
test_str.py
test_strftime.py
test_string_literals.py
test_stringprep.py
test_strptime.py gh-149879: Fix test_strptime on Cygwin (#150438) 2026-05-26 04:25:07 +02:00
test_strtod.py
test_struct.py gh-148675: Add Zd/Zf formats to array, ctypes, memoryview, struct (#148676) 2026-05-04 16:14:23 +02:00
test_structseq.py
test_subclassinit.py
test_subprocess.py gh-150436: Check returncode in Win32ProcessTestCase (#150972) 2026-06-05 15:24:46 +00:00
test_sundry.py
test_super.py
test_support.py
test_symtable.py gh-149530: Remove symtable.Class.get_methods deprecated method (#149531) 2026-05-09 08:33:09 +00:00
test_syntax.py
test_sys.py gh-149595: Remove the sys._enablelegacywindowsfsencoding() function (#149596) 2026-05-12 17:11:34 +01:00
test_sys_setprofile.py
test_sys_settrace.py GH-143732: SEND specialization (GH-148963) 2026-05-05 15:19:16 +01:00
test_sysconfig.py gh-150208: Avoid double-quoting string values in sysconfigdata (#150209) 2026-05-25 13:30:07 +01:00
test_syslog.py
test_tabnanny.py
test_tarfile.py gh-107398: Fix tarfile stream mode exception when process the file with the gzip extra field (GH-126304) 2026-05-21 19:12:09 +00:00
test_tcl.py gh-124111: Keep tests passing for Tcl prior to 9.0 (GH-150102) 2026-05-19 21:27:44 +01:00
test_tempfile.py gh-150368: Change Windows user group to secure identifier in test_tempfile (#150369) 2026-06-01 11:35:48 +00:00
test_termios.py gh-149879: Fix test_termios and test_ioctl on Cygwin (#150412) 2026-05-25 19:06:28 +02:00
test_textwrap.py
test_thread.py
test_thread_local_bytecode.py
test_threadedtempfile.py
test_threading.py gh-124397: Add free-threading support for iterators. (gh-148894) 2026-05-01 16:31:00 -05:00
test_threading_local.py
test_threadsignals.py
test_time.py GH-70647: Remove support for %d (and deprecate for %e) without year in strptime() (GH-144570) 2026-04-14 17:15:27 -07:00
test_timeit.py GH-130750: Restore quoting of choices in argparse error messages to match documentation and improve clarity (#144983) 2026-05-04 21:51:48 +00:00
test_timeout.py
test_tokenize.py gh-148991: Add colour to tokenize CLI output (#148992) 2026-04-26 22:14:33 +03:00
test_trace.py
test_traceback.py gh-146406: add clear() cross-language hint for immutable types (GH-149927) 2026-05-19 23:01:15 -04:00
test_tracemalloc.py
test_tstring.py
test_ttk_textonly.py
test_tty.py
test_tuple.py
test_turtle.py
test_type_aliases.py gh-149171: Make TypeAliasType __module__ writable (#149172) 2026-05-02 17:28:08 +00:00
test_type_annotations.py gh-149805: Fix SystemError when compiling __classdict__ class annotation (#149806) 2026-06-02 10:17:03 +01:00
test_type_cache.py gh-148450: abc.register needs to update type_version when tp_flags is changed (#148623) 2026-05-23 13:55:44 +05:30
test_type_comments.py
test_type_params.py
test_typechecks.py
test_types.py
test_typing.py gh-132467: Document and test that generic aliases are not classes (#133504) 2026-06-03 13:35:25 +00:00
test_ucn.py
test_unary.py
test_unicode_file.py
test_unicode_file_functions.py
test_unicode_identifiers.py
test_unicodedata.py gh-149079: Fix O(n^2) canonical ordering in unicodedata.normalize() (GH-149080) 2026-06-02 11:39:50 +02:00
test_unpack.py
test_unpack_ex.py
test_unparse.py
test_urllib.py
test_urllib2.py
test_urllib2_localnet.py
test_urllib2net.py
test_urllib_response.py
test_urllibnet.py
test_urlparse.py
test_userdict.py
test_userlist.py
test_userstring.py
test_utf8_mode.py
test_utf8source.py
test_uuid.py gh-148740: Fix uuid CLI with custom UUIDs for UUIDv3/v5 namespaces (#148741) 2026-04-29 15:44:22 +02:00
test_venv.py gh-149879: Fix test_venv on Cygwin (#150483) 2026-05-26 18:32:13 +02:00
test_wait3.py
test_wait4.py
test_wave.py gh-117716: Fix wave RIFF padding for data chunks (GH-145237) 2026-04-15 14:21:43 +02:00
test_weakref.py
test_weakset.py
test_webbrowser.py gh-149496: Fix MacOSTest.test_default regression when BROWSER env var is set (GH-149579) 2026-05-08 20:33:05 +00:00
test_winapi.py
test_winconsoleio.py
test_winreg.py
test_winsound.py
test_with.py
test_wmi.py
test_wsgiref.py
test_xml.py gh-139489: Add xml.is_valid_text() (GH-149412) 2026-05-06 14:40:10 +00:00
test_xml_dom_minicompat.py
test_xml_dom_xmlbuilder.py
test_xml_etree.py gh-150560: Fix crash in XML parser on invalid XML with multi-byte encoding (GH-150568) 2026-05-30 00:23:32 +03:00
test_xml_etree_c.py
test_xmlrpc.py gh-148954: Escape methodname in xmlrpc.client.dumps() to prevent XML injection (GH-148968) 2026-06-06 21:38:15 +00:00
test_xpickle.py
test_xxlimited.py gh-140550: Update xxlimited with 3.15 limited API (GH-142827) 2026-05-13 18:35:50 +02:00
test_xxtestfuzz.py
test_yield_from.py
test_zipapp.py
test_zipfile64.py
test_zipimport.py
test_zipimport_support.py
test_zlib.py
test_zstd.py
testcodec.py
tf_inherit_check.py
win_console_handler.py
xmltests.py
xpickle_worker.py