summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* gh-98401: Invalid escape sequences emits SyntaxWarning (#99011)Victor Stinner2022-11-033-18/+18
* gh-97616: test_list_resize_overflow() uses sys.maxsize (#99057)Victor Stinner2022-11-031-1/+1
* GH-96793: Implement PEP 479 in bytecode. (GH-99006)Mark Shannon2022-11-033-3/+5
* gh-98740: Fix validation of conditional expressions in RE (GH-98764)Serhiy Storchaka2022-11-031-0/+5
* gh-98999: Raise `ValueError` in `_pyio` on closed buffers (gh-99009)Nikita Sobolev2022-11-031-12/+26
* gh-98512: Add more tests for `ValuesView` (#98515)Nikita Sobolev2022-11-032-0/+6
* gh-98393: Update test_os for bytes-like types (#98487)Victor Stinner2022-11-021-34/+12
* gh-98790: When DLLs directory is missing on Windows, assume executable_dir co...Steve Dower2022-11-022-13/+30
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-025-40/+46
* gh-98903: Test suite fails with exit code 4 if no tests ran (#98904)Victor Stinner2022-11-022-26/+50
* gh-98925: Lower marshal recursion depth for WASI (GH-98938)Brett Cannon2022-11-011-0/+2
* gh-98931: Improve error message when the user types 'import x from y' instead...Pablo Galindo Salgado2022-11-011-0/+16
* gh-98852: Fix subscription of type aliases (GH-98920)Serhiy Storchaka2022-11-011-0/+28
* gh-98658: Add __class_getitem__ to array.array (#98661)Jelle Zijlstra2022-11-011-1/+3
* GH-98897: fix memory leak if `math.dist` raises exception (GH-98898)Kumar Aditya2022-11-011-0/+5
* gh-98692: Enable treating shebang lines as executables in py.exe launcher (GH...Steve Dower2022-10-311-0/+47
* gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)Eric Snow2022-10-314-8/+121
* gh-98878: Use builtins from the bound frame when offering a suggestion (#98880)Batuhan Taskaya2022-10-311-0/+9
* gh-98811: use full source location to simplify __future__ imports error check...Irit Katriel2022-10-311-1/+1
* gh-96151: Use a private name for passing builtins to dataclass. This now allo...Shantanu2022-10-311-0/+8
* gh-96853: Restore test coverage for Py_Initialize(Ex) (GH-98212)Nick Coghlan2022-10-301-0/+6
* gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Equal` (#...Nikita Sobolev2022-10-302-0/+31
* gh-98793: Fix typecheck in `overlapped.c` (#98835)Charlie Zhao2022-10-301-0/+11
* GH-90352: fix _SelectorDatagramTransport to inherit from DatagramTransport (#...Kumar Aditya2022-10-291-0/+4
* gh-98744: Prevent column-level decoding crashes on traceback module (#98824)Batuhan Taskaya2022-10-291-0/+50
* gh-84538: add strict argument to pathlib.PurePath.relative_to (GH-19813)domragusa2022-10-281-0/+82
* GH-96793: Change `FOR_ITER` to not pop the iterator on exhaustion. (GH-96801)Mark Shannon2022-10-272-93/+97
* gh-98586: Add vector call APIs to the Limited API (GH-98587)Wenzel Jakob2022-10-272-1/+35
* gh-98703: Add tests for closing `_ProactorSocketTransport` with proactor even...Kumar Aditya2022-10-271-0/+21
* gh-94808: cover `PyFunction_GetDefaults` and `PyFunction_SetDefaults` (#98449)Nikita Sobolev2022-10-271-0/+42
* gh-98741: Remove useless check_home usage from is_python_build usage (GH-98743)Henry Schreiner2022-10-261-1/+1
* gh-98727: Remove old style classes from `test_cmath` (GH-98728)Nikita Sobolev2022-10-261-33/+5
* gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...Eric Snow2022-10-264-6/+74
* gh-98713: Use `@cpython_only` for a test that fails on PyPy (#98714)Nikita Sobolev2022-10-261-1/+2
* gh-90716: add _pylong.py module (#96673)Neil Schemenauer2022-10-261-0/+47
* gh-94808: cover `PyMapping_HasKeyString` and `PyMapping_HasKey` (#98486)Nikita Sobolev2022-10-261-0/+12
* gh-94808: Improve coverage of `unicode_find` and `unicode_rfind` (#98648)Nikita Sobolev2022-10-251-0/+27
* gh-91058: Add error suggestions to 'import from' import errors (#98305)Pablo Galindo Salgado2022-10-252-2/+124
* GH-87390: Add remaining tests for PEP 646 (#98267)Matthew Rahtz2022-10-252-242/+472
* Use more precise exception types in `assertRaises` in typing tests (#98650)Nikita Sobolev2022-10-251-3/+3
* gh-93696: Locate frozen module source with __file__ (#93697)James Gerity2022-10-251-0/+46
* gh-98461: Fix location of RETURN_VALUE in async generator bytecode. compiler_...Irit Katriel2022-10-251-1/+1
* GH-89237: fix hang in proactor `subprocess.wait_closed()` (#98572)Kumar Aditya2022-10-241-1/+6
* GH-98407: fix `test_kill_issue43884` to not leak child processes (#98491)Kumar Aditya2022-10-241-1/+4
* gh-51511: Note that codecs.open()'s encoding parameter affects automatic conv...Stanley2022-10-211-1/+2
* GH-98363: Fix exception handling in batched() (GH-98523)Raymond Hettinger2022-10-211-0/+15
* gh-95027: Fix regrtest stdout encoding on Windows (#98492)Victor Stinner2022-10-211-3/+11
* gh-91051: allow setting a callback hook on PyType_Modified (GH-97875)Carl Meyer2022-10-212-2/+169
* gh-97912: Avoid quadratic behavior when adding LOAD_FAST_CHECK (GH-97952)Dennis Sweeney2022-10-201-0/+39
* gh-96035: Make urllib.parse.urlparse reject non-numeric ports (#98273)Ben Kallus2022-10-201-3/+7