summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* gh-123678: Upgrade libexpat 2.6.3 (#123689)Seth Michael Larson2024-09-043-15/+35
* gh-123504: Fix regression in `_tkinter` initializer (#123662)Peter Bierma2024-09-041-2/+14
* gh-123504: Fix reference leak in finalization of `_tkinter` (#123505)Peter Bierma2024-09-031-8/+19
* gh-107954, PEP 741: Add PyConfig_Get()/Set() functions (#123472)Victor Stinner2024-09-024-1/+73
* gh-123091: Use more _Py_IsImmortalLoose() (GH-123602)Petr Viktorin2024-09-021-1/+1
* gh-122854: Add Py_HashBuffer() function (#122855)Victor Stinner2024-08-305-10/+29
* gh-121645: Add PyBytes_Join() function (#121646)Victor Stinner2024-08-304-5/+20
* gh-123189: [`Modules/blake2module.c`]: Move function definitions and their us...Kirill Podoprigora2024-08-301-0/+8
* gh-121485: Always use 64-bit integers for integers bits count (GH-121486)Serhiy Storchaka2024-08-304-12/+13
* gh-123446: Fix empty function names in `TypeError`s in `_csv` module (#123462)sobolevn2024-08-291-3/+3
* gh-123446: Fix empty function names in `TypeError`s in `_csv` module (#123461)sobolevn2024-08-291-3/+3
* gh-123431: Harmonize extension code checks in pickle (GH-123434)Serhiy Storchaka2024-08-291-21/+11
* gh-123448: Move `_PyNoDefault_Type` to the static types array (#123449)Peter Bierma2024-08-291-3/+0
* Fix typos in docs, error messages and comments (#123336)Wulian2024-08-288-10/+10
* gh-120389: Add PyLong_FromInt64() and PyLong_AsInt64() (#120390)Victor Stinner2024-08-282-2/+58
* gh-111495: Add tests for PyNumber C API (#111996)Sergey B Kirpichev2024-08-261-0/+161
* gh-111495: Add tests for PyTuple C API (#118757)Sergey B Kirpichev2024-08-265-2/+249
* gh-123243: Fix reference leak in `_decimal` (#123244)neonene2024-08-241-2/+24
* gh-122272: Guarantee specifiers %F and %C for datetime.strftime to be 0-padde...blhsing2024-08-231-6/+26
* gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment to no lo...Bar Harel2024-08-231-10/+2
* GH-99108: Amend Modules/Setup (#123146)Jonathan Protzenko2024-08-231-1/+1
* Fix typos in comments (#123201)Wulian2024-08-211-2/+2
* gh-122081: fixed crash in decimal.IEEEContext() (#122082)Sergey B Kirpichev2024-08-191-2/+2
* gh-122681: remove m_atan2()/c_atan2() helpers (#122715)Sergey B Kirpichev2024-08-173-42/+3
* gh-99108: Add HACL* Blake2 implementation to hashlib (GH-119316)Jonathan Protzenko2024-08-1345-4785/+11141
* gh-117482: Make the Slot Wrapper Inheritance Tests Much More Thorough (gh-122...Eric Snow2024-08-121-0/+16
* gh-122688: Add more tests for var-positional parameters in Argument Clinic (G...Serhiy Storchaka2024-08-122-88/+329
* GH-120974: make `_asyncio.all_tasks` thread safe (#122801)Kumar Aditya2024-08-111-7/+15
* gh-115808: Add ``is_none`` and ``is_not_none`` to ``operator`` (#115814)Nico Mexis2024-08-102-1/+49
* gh-111495: Fix refleaks in test_capi.test_eval tests (#122851)Victor Stinner2024-08-091-3/+3
* gh-122688: Fix support of var-positional parameter in Argument Clinic (GH-122...Serhiy Storchaka2024-08-092-57/+94
* gh-121268: Remove workarounds for non-IEEE 754 systems in cmath (#122716)Sergey B Kirpichev2024-08-091-14/+3
* gh-116622: Rename build variable MODULE_LDFLAGS back to LIBPYTHON (#122764)Malcolm Smith2024-08-081-1/+1
* gh-111495: Add more tests on PyEval C APIs (#122789)Victor Stinner2024-08-085-22/+100
* gh-105201: Add PyIter_NextItem() (#122331)Erlend E. Aasland2024-08-071-0/+29
* gh-118814: Fix the TypeVar constructor when name is passed by keyword (GH-122...Serhiy Storchaka2024-08-072-1/+93
* gh-100256: Skip inaccessible registry keys in the WinAPI mimetype implementat...Lucas Esposito2024-08-071-1/+1
* gh-122728: Fix SystemError in PyEval_GetLocals() (#122735)Victor Stinner2024-08-061-0/+7
* gh-122681: merge m_atan2() and c_atan2() helper functions (#122682)Sergey B Kirpichev2024-08-063-69/+41
* gh-122704: Fix reference leak in Modules/_pickle.c (GH-122705)Kirill Podoprigora2024-08-061-0/+4
* gh-122459: Optimize pickling by name objects without __module__ (GH-122460)Serhiy Storchaka2024-08-051-127/+122
* gh-122637: fix tanh(±0+infj) and tanh(±0+nanj) to return ±0+nanj (#122638)Sergey B Kirpichev2024-08-041-2/+2
* gh-121889: cmath.acosh(0+nanj) returns nan+pi/2j (#121892)Sergey B Kirpichev2024-08-041-2/+2
* gh-120974: Make asyncio `swap_current_task` safe in free-threaded build (#122...Sam Gross2024-08-021-14/+23
* Update PyObject_Del() documentation (#122597)Victor Stinner2024-08-022-9/+9
* Replace PyObject_Del with PyObject_Free (#122453)Victor Stinner2024-08-012-4/+4
* gh-116622: Don't expose `FICLONE` ioctl on Android (#122522)Malcolm Smith2024-08-011-0/+5
* gh-121381 Remove subprocess._USE_VFORK escape hatch (#121383)Cody Maloney2024-07-312-14/+8
* gh-122311: Fix a refleak in pickle (GH-122411)Serhiy Storchaka2024-07-291-0/+1
* gh-122311: Fix some error messages in pickle (GH-122386)Serhiy Storchaka2024-07-291-3/+3