summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Add multicore support to deccheck.py. (GH-20731) Miss Islington (bot)2020-06-081-21/+110
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Victor Stinner2020-06-081-11/+7
* bpo-40724: Fix return type of test helper function heapctypewithbuffer_releas...Miss Islington (bot)2020-06-071-1/+1
* bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683)Miss Islington (bot)2020-06-071-0/+47
* Refactor scripts in Tools/peg_generator/scripts (GH-20401)Miss Islington (bot)2020-06-061-4/+12
* bpo-40874: Update to libmpdec-2.5.0 (GH-20652)Miss Islington (bot)2020-06-0538-296/+502
* bpo-40865: Remove unused insint() macro from hash modules (GH-20627)Miss Islington (bot)2020-06-044-12/+0
* [3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618)Victor Stinner2020-06-031-1/+1
* [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613)Victor Stinner2020-06-031-3/+15
* [3.9] bpo-40630: Add tracemalloc.reset_peak (GH-20102) (GH-20545)Huon Wilson2020-06-012-1/+46
* bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)Miss Islington (bot)2020-06-011-11/+45
* [3.9] bpo-40777: Initialize PyDateTime_IsoCalendarDateType.tp_base at run-tim...Miss Islington (bot)2020-05-281-3/+10
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-285-0/+6
* [3.9] bpo-40791: Use CRYPTO_memcmp() for compare_digest (GH-20456) (GH-20461)Christian Heimes2020-05-283-1/+159
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Miss Islington (bot)2020-05-272-14/+31
* Fix compiler warnings in _zoneinfo.c (GH-20342)Miss Islington (bot)2020-05-271-30/+26
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Miss Islington (bot)2020-05-271-0/+15
* bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...Miss Islington (bot)2020-05-262-5/+5
* bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323)Miss Islington (bot)2020-05-261-8/+12
* bpo-35714: Reject null characters in struct format strings (GH-16928)Miss Islington (bot)2020-05-261-0/+5
* bpo-40688: Use the correct parser in the peg_generator scripts (GH-20235)Miss Islington (bot)2020-05-251-52/+81
* bpo-40671: Prepare _hashlib for PEP 489 (GH-20180)Miss Islington (bot)2020-05-251-67/+114
* bpo-40705: Fix use-after-free in _zoneinfo's module_free (GH-20280)Miss Islington (bot)2020-05-241-6/+9
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Miss Islington (bot)2020-05-221-6/+6
* [3.9] bpo-40714: Remove compile warning from _zoneinfo.c (GH-20291) (GH-20293)Miss Islington (bot)2020-05-211-2/+4
* bpo-40645: restrict HMAC key len to INT_MAX (GH-20238)Miss Islington (bot)2020-05-191-1/+7
* [3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (...Victor Stinner2020-05-192-23/+0
* bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)Miss Islington (bot)2020-05-191-0/+4
* bpo-40653: Move _dirnameW out of #ifdef HAVE_SYMLINK/#endif (GH-20144)Minmin Gong2020-05-181-2/+6
* bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)Kjell Braden2020-05-181-5/+2
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-182-22/+106
* bpo-40665: Use Argument Clinic for the bisect module (GH-20163)Shantanu2020-05-182-131/+411
* bpo-37630: Fix spelling shake128 -> shake_128 (GH-20154)Christian Heimes2020-05-172-39/+39
* bpo-40645: Implement HMAC in C (GH-20129)Christian Heimes2020-05-172-17/+568
* bpo-39740: Early declare devpoll_methods to support old compilers (GH-19281)Batuhan Taskaya2020-05-161-0/+2
* bpo-37630: Use SHA3 and SHAKE XOF from OpenSSL (GH-16049)Christian Heimes2020-05-162-18/+822
* bpo-24416: Return named tuple from date.isocalendar() (GH-20113)Paul Ganssle2020-05-162-5/+203
* bpo-40192: Use thread_cputime for time.thread_time to improve resolution (GH-...Batuhan Taskaya2020-05-161-0/+28
* bpo-40503: PEP 615: Tests and implementation for zoneinfo (GH-19909)Paul Ganssle2020-05-162-0/+2696
* bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)Christian Heimes2020-05-161-34/+27
* bpo-31033: Add a msg argument to Future.cancel() and Task.cancel() (GH-19979)Chris Jerdonek2020-05-152-27/+148
* bpo-40515: Require OPENSSL_THREADS (GH-19953)Christian Heimes2020-05-152-1/+9
* bpo-40479: Fix hashlib issue with OpenSSL 3.0.0 (GH-20107)Christian Heimes2020-05-152-8/+17
* Trivial typo fix in _tkinter.c (GH-19622)Andrew York2020-05-151-7/+7
* bpo-40602: _Py_hashtable_set() reports rehash failure (GH-20077)Victor Stinner2020-05-141-5/+9
* bpo-40602: Write unit tests for _Py_hashtable_t (GH-20091)Victor Stinner2020-05-141-0/+88
* Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...Victor Stinner2020-05-141-1026/+121
* bpo-40549: posixmodule.c uses defining_class (GH-20075)Victor Stinner2020-05-142-137/+132
* bpo-40521: Add PyInterpreterState.unicode (GH-20081)Victor Stinner2020-05-131-1/+1
* bpo-40613: Remove compiler warning from _xxsubinterpretersmodule (GH-20069)Dong-hee Na2020-05-131-0/+8