summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* gh-117440: Make `syslog` thread-safe in free-threaded builds (#117441)Sam Gross2024-04-022-5/+19
* gh-117074: Update Traversable.joinpath docs to the 3.11+ protocol (GH-117113)Petr Viktorin2024-04-021-2/+24
* gh-115538: Use pathlib to compare prefixes in test_venv (GH-117076)AN Long2024-04-021-1/+2
* gh-113317: Argument Clinic: Add libclinic.return_converters (#117451)Victor Stinner2024-04-023-181/+178
* GH-115776: Embed the values array into the object, for "normal" Python object...Mark Shannon2024-04-0235-536/+786
* gh-109120: Fix syntax error in handlinh of incorrect star expressions (#117444)Grigoriev Semyon2024-04-024-1239/+1442
* gh-117411: move PyFutureFeatures to pycore_symtable.h and make it private (#1...Irit Katriel2024-04-0211-42/+49
* gh-113317: Argument Clinic: Add libclinic.converters module (#117315)Victor Stinner2024-04-027-1215/+1259
* Docs: specify XML document name in xml.etree.elementtree example (#24223)Moshe Kaplan2024-04-011-1/+1
* Docs: add more links to PIPE in subprocess docs (#25416)Matthew Davis2024-04-011-5/+8
* GH-117337: Deprecate `glob.glob0()` and `glob.glob1()`. (#117371)Barney Gale2024-04-014-1/+47
* gh-77714: Provide an async iterator version of as_completed (GH-22491)Justin Turner Arthur2024-04-015-120/+387
* Silence compiler warnings in gc.c (#117422)Guido van Rossum2024-04-011-0/+3
* gh-94808: Fix refcounting in PyObject_Print tests (GH-117421)Petr Viktorin2024-04-011-0/+4
* gh-117142: ctypes: Unify meta tp slot functions (GH-117143)neonene2024-04-013-73/+46
* gh-91565: Replace bugs.python.org links with Devguide/GitHub ones (GH-91568)Steve (Gadget) Barnes2024-04-015-5/+9
* gh-94808:Improve coverage of PyObject_Print (GH-98749)MonadChains2024-04-018-2/+197
* Bump mypy from 1.8.0 to 1.9.0 in /Tools (#117418)dependabot[bot]2024-04-012-4/+2
* build(deps-dev): bump types-psutil from 5.9.5.20240205 to 5.9.5.20240316 in /...dependabot[bot]2024-04-011-1/+1
* build(deps-dev): bump types-setuptools from 69.1.0.20240301 to 69.2.0.2024031...dependabot[bot]2024-04-011-1/+1
* build(deps): bump actions/add-to-project from 0.6.0 to 1.0.0 (#117415)dependabot[bot]2024-04-011-1/+1
* Doc: printf-style library/stdtype improvements (#16741)Adorilson Bezerra2024-03-311-1/+7
* gh-117387 Remove hash mark from introductory text (#117409)Raymond Hettinger2024-03-311-1/+2
* gh-102190: Add additional zipfile `pwd=` arg docstrings (gh-102195)Deborah2024-03-311-3/+6
* Link to the Python type system specification (#117400)Shantanu2024-03-311-73/+15
* GH-114575: Rename `PurePath.pathmod` to `PurePath.parser` (#116513)Barney Gale2024-03-316-119/+123
* gh-117303: Don't detach in `PyThreadState_DeleteCurrent()` (#117304)Sam Gross2024-03-291-2/+0
* gh-116664: In _warnings.c, make filters_version access thread-safe (#117374)Erlend E. Aasland2024-03-291-6/+9
* gh-117348: Refactored RawConfigParser._read for similicity and comprehensibil...Jason R. Coombs2024-03-292-147/+185
* gh-117300: Use stop the world to make `sys._current_frames` and `sys._current...Sam Gross2024-03-292-1/+6
* Fix broken format in error for bad input in summarize_stats.py (#117375)Guido van Rossum2024-03-291-1/+1
* gh-111926: Avoid locking in PyType_IsSubtype (#117275)mpage2024-03-291-8/+1
* gh-117323: Make `cell` thread-safe in free-threaded builds (#117330)Sam Gross2024-03-2911-43/+83
* gh-117344: Skip flaky tests in free-threaded build (#117355)Sam Gross2024-03-292-0/+2
* gh-112529: Don't untrack tuples or dicts with zero refcount (#117370)Sam Gross2024-03-291-15/+18
* gh-116664: Fix unused var warnings in _warnings.c in non-free-threaded builds...Erlend E. Aasland2024-03-291-0/+8
* Refactor pdb executable targets (#112570)Tian Gao2024-03-291-41/+36
* gh-66449: configparser: Add support for unnamed sections (#117273)Pedro Lacerda2024-03-295-31/+172
* gh-117166: Ignore empty and temporary dirs in `test_makefile` (#117190)Nikita Sobolev2024-03-291-2/+10
* gh-117347: Fix test_clinic side effects (#117363)Victor Stinner2024-03-291-0/+18
* gh-117142: ctypes: Migrate global vars to module state (GH-117189)neonene2024-03-297-224/+237
* Fix reversed assertRegex checks in test_ssl. (#117351)Gregory P. Smith2024-03-291-2/+2
* gh-117110: Fix subclasses of typing.Any with custom constructors (#117111)傅立业(Chris Fu)2024-03-293-1/+22
* gh-117339: Use NULL instead of None for LOAD_SUPER_ATTR in dis docs (GH-117343)Christopher Chianelli2024-03-281-1/+1
* GH-117121: Add pystats to JIT builds (GH-117346)Michael Droettboom2024-03-283-1/+10
* gh-117335: Handle non-iterables for `ntpath.commonpath` (GH-117336)Nice Zombies2024-03-283-6/+9
* Increase the JIT CI timeouts to 75 minutes (GH-117342)Brandt Bucher2024-03-281-7/+5
* gh-117294: Report DocTestCase as skipped if all examples in the doctest are s...Malcolm Smith2024-03-287-7/+87
* gh-69201: Separate stdout and stderr stream in test_pdb (#117308)Tian Gao2024-03-281-16/+17
* gh-114331: Skip decimal test_maxcontext_exact_arith on s390x (#117326)Victor Stinner2024-03-281-1/+5