summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* GH-89812: Test that `pathlib.Path.is_junction()` returns false (GH-106062)Barney Gale2023-07-011-0/+9
* GH-89812: Make symlink support configurable in pathlib tests. (GH-106060)Barney Gale2023-07-011-36/+52
* gh-106149: move unconditional jump direction resolution from optimizer to ass...Irit Katriel2023-07-014-20/+44
* build(deps): bump mheap/github-action-required-labels from 4 to 5 (#106306)dependabot[bot]2023-07-011-1/+1
* build(deps-dev): bump mypy from 1.3.0 to 1.4.1 in /Tools/clinic (#106305)dependabot[bot]2023-07-011-1/+1
* gh-106232: Make timeit doc command lines compatible with Windows. (#106296)Terry Jan Reedy2023-07-013-10/+12
* gh-105486: Change the `repr` of `ParamSpec` list of args in `GenericAlias` (#...Nikita Sobolev2023-07-014-1/+62
* GH-89812: Simplify creation of symlinks in pathlib tests. (GH-106061)Barney Gale2023-06-301-20/+12
* gh-106145: Make `end_{lineno,col_offset}` required on `type_param` nodes (#10...Nikita Sobolev2023-06-304-14/+10
* GH-106135: Add more edge-"cases" to test_patma (GH-106271)Nikita Sobolev2023-06-301-0/+131
* gh-106267: Add type cast to generated code (#106289)Kirill Podoprigora2023-06-302-2/+2
* gh-106280: Remove unnecessary unreachable code (gh-106285)Dong-hee Na2023-06-301-3/+0
* gh-101100: Docs: Fix references to several numeric dunders (#106278)F3eQnxN3RriK2023-06-306-45/+45
* GH-104584: Add Include/cpython/optimizer.h to Makefile.pre.in (#106277)Victor Stinner2023-06-303-0/+5
* Cleanup clear_static_tp_subclasses() (#106276)Victor Stinner2023-06-301-0/+2
* gh-106023: Remove _PyObject_FastCallTstate() function (#106273)Victor Stinner2023-06-303-30/+6
* gh-77782: Deprecate Py_HasFileSystemDefaultEncoding (#106272)Victor Stinner2023-06-302-1/+2
* gh-106023: Remove _PyObject_FastCall() function (#106265)Victor Stinner2023-06-307-51/+13
* Remove private _PyCodec_Lookup() function (#106269)Victor Stinner2023-06-309-97/+87
* gh-106023: Rename _PyObject_FastCallDictTstate() (#106264)Victor Stinner2023-06-302-9/+10
* gh-106182: sys: Intern getfilesystemencoding() and getfilesystemencodeerrors(...Inada Naoki2023-06-302-5/+27
* fix typos (#106247)Inada Naoki2023-06-308-12/+12
* gh-106023: Remove _PY_FASTCALL_SMALL_STACK constant (#106258)Victor Stinner2023-06-302-13/+12
* gh-106023: Update code using _PyObject_FastCall() (#106257)Victor Stinner2023-06-3010-453/+434
* gh-106210 Remove Emscripten import trampoline (#106211)Hood Chatham2023-06-304-19/+4
* GH-106152: Add PY_THROW event to cProfile (GH-106161)Tian Gao2023-06-293-0/+22
* GH-106008: Make implicit boolean conversions explicit (GH-106003)Brandt Bucher2023-06-2920-1145/+1721
* GH-106250: Support insts using one cache entry and no oparg (GH-106252)Guido van Rossum2023-06-291-18/+18
* gh-105775: Convert LOAD_CLOSURE to a pseudo-op (#106059)hms2023-06-2916-702/+733
* Fix possible refleak in CodeType.replace() (GH-106243)Serhiy Storchaka2023-06-291-0/+1
* gh-106078: Convert `_decimal` types to heap types (#106079)Charlie Zhao2023-06-293-390/+433
* gh-89392: Make test_decimal discoverable (GH-106209)Serhiy Storchaka2023-06-291-133/+146
* gh-106033: Get rid of PyDict_GetItem in _PyFunction_FromConstructor (GH-106044)Serhiy Storchaka2023-06-291-4/+6
* gh-101006: Improve error handling when read marshal data (GH-101007)Serhiy Storchaka2023-06-292-61/+72
* gh-106194: Rename duplicated tests in `test_curses` (#106196)Nikita Sobolev2023-06-281-4/+11
* GH-106214: Fix `test_opcache` to skip threaded tests on non-threaded platform...Hood Chatham2023-06-281-0/+2
* gh-104584: Emit macro expansions to opcode_metadata.h (#106163)Guido van Rossum2023-06-284-78/+153
* gh-106197: Deduplicate tests in `test_buffer` (#106198)Nikita Sobolev2023-06-281-1/+1
* gh-101100: Fix reference to `parse_args` in `optparse.rst` (#105265)F3eQnxN3RriK2023-06-281-24/+27
* gh-106200: Remove unused imports (#106201)Nikita Sobolev2023-06-284-5/+0
* gh-106118: Add O_CLOEXEC preprocessor guard (#106120)Erlend E. Aasland2023-06-282-1/+6
* gh-101100: Fix reference to asynchronous methods (#106172)F3eQnxN3RriK2023-06-282-10/+10
* gh-105993: Add possible `None` return type to `asyncio.EventLoop.start_tls` d...Sam Bull2023-06-281-0/+3
* gh-106162: fix test_array modifies warning filter (#106181)Inada Naoki2023-06-281-0/+1
* Refer to `TimeoutError` instead of `asyncio.TimeoutError` in `asyncio-task.rs...lightdrk2023-06-281-4/+4
* Fix c-analyzer for GCC: ignore LANG env var (#106173)Victor Stinner2023-06-281-1/+7
* GH-104584: Fix test_capi.test_counter_optimizer() when run twice (#106171)Victor Stinner2023-06-281-15/+24
* gh-101634: regrtest reports decoding error as failed test (#106169)Victor Stinner2023-06-283-1/+50
* gh-106168: PyTuple_SET_ITEM() now checks the index (#106164)Victor Stinner2023-06-2810-23/+62
* GH-106160: Fix test_gzip failing under WASI, which does not have zlib. (#106167)T. Wouters2023-06-281-1/+1