summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* bpo-40791: Make compare_digest more constant-time. (GH-20444)Miss Islington (bot)2020-11-211-1/+1
* bpo-41686: Always create the SIGINT event on Windows (GH-23344) (GH-23347) (G...Victor Stinner2020-11-171-5/+47
* [3.8] bpo-42237: Fix os.sendfile() on illumos (GH-23154). (GH-23246)Jakub Stasiak2020-11-121-0/+18
* [3.8] bpo-35455: Fix thread_time for Solaris OS (GH-11118). (GH-23145)Jakub KulĂ­k2020-11-041-0/+17
* bpo-41662: Fix bugs in binding parameters in sqlite3 (GH-21998)Miss Skeleton (bot)2020-10-261-2/+5
* bpo-42144: Add a missing "goto error;" in the _ssl module (GH-22959)Miss Skeleton (bot)2020-10-251-0/+1
* bpo-38324: Fix test__locale.py Windows failures (GH-20529)Miss Skeleton (bot)2020-10-201-3/+22
* bpo-16396: Allow wintypes to be imported on non-Windows systems. (GH-21394)Miss Skeleton (bot)2020-10-191-3/+6
* bpo-41984: GC track all user classes (GH-22701/GH-22707)Miss Skeleton (bot)2020-10-151-0/+20
* bpo-41867: List options for timespec in docstrings of isoformat methods (GH-2...Miss Skeleton (bot)2020-10-031-4/+8
* [3.8] bpo-41602: raise SIGINT exit code on KeyboardInterrupt from pymain_run_...Thomas Grainger2020-09-241-0/+4
* bpo-41815: SQLite: segfault if backup called on closed database (GH-22322)Miss Islington (bot)2020-09-211-0/+4
* bpo-31122: ssl.wrap_socket() now raises ssl.SSLEOFError rather than OSError w...Miss Islington (bot)2020-08-151-4/+5
* [3.8] bpo-41302: Support system libmpdec 2.5 for Python 3.8 (GH-21488)Felix Yan2020-07-151-0/+7
* bpo-40150: Fix mismatched argument in RegisterWaitForSingleObject() call (GH-...Miss Islington (bot)2020-07-151-3/+2
* bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458)Miss Islington (bot)2020-07-131-8/+21
* bpo-41247: asyncio.set_running_loop() cache running loop holder (#21406)Tony Solomonik2020-07-091-3/+6
* bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-2...Miss Islington (bot)2020-07-091-1/+2
* closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-2...Miss Islington (bot)2020-07-081-2/+4
* bpo-29778: Ensure python3.dll is loaded from correct locations when Python is...Miss Islington (bot)2020-07-061-1/+44
* bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp...scoder2020-07-051-0/+79
* [3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#2...Guido van Rossum2020-06-281-1/+3
* bpo-41094: Additional fix for PYTHONSTARTUP. (GH-21119)Miss Islington (bot)2020-06-241-9/+43
* bpo-41094: Fix decoding errors with audit when open files. (GH-21095)Miss Islington (bot)2020-06-242-6/+10
* [3.8] bpo-31938: Fix default-value signatures of several functions in the sel...Anthony Sottile2020-06-232-13/+17
* bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071)Miss Islington (bot)2020-06-231-1/+1
* bpo-41056: Fix a NULL pointer dereference on MemoryError within the ssl modul...Miss Islington (bot)2020-06-211-6/+6
* [3.8] Revert bpo-39576: Prevent memory error for overly optimistic precisions...Stefan Krah2020-06-082-210/+6
* [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613) (GH-20616)Victor Stinner2020-06-031-4/+22
* bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)Miss Islington (bot)2020-06-011-11/+45
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Miss Islington (bot)2020-05-272-14/+31
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Miss Islington (bot)2020-05-271-0/+15
* [3.8] bpo-38580: Document that select() accepts iterables, not just sequences...Tal Einat2020-05-262-5/+5
* [3.8] bpo-35714: Reject null characters in struct format strings (GH-16928) (...Zackery Spytz2020-05-261-0/+4
* bpo-40677: Define IO_REPARSE_TAG_APPEXECLINK explicitly (GH-20206)Miss Islington (bot)2020-05-191-0/+4
* bpo-40653: Move _dirnameW out of GH-ifdef HAVE_SYMLINK/GH-endif (GH-20144)Miss Islington (bot)2020-05-181-2/+6
* bpo-39148: enable ipv6 for datagrams in Proactor (GH-19121)Miss Islington (bot)2020-05-181-5/+2
* bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862)Miss Islington (bot)2020-05-161-34/+27
* [3.8] bpo-40515: Require OPENSSL_THREADS (GH-19953) (GH-20119)Christian Heimes2020-05-152-1/+9
* [3.8] bpo-40559: Add Py_DECREF to _asynciomodule.c:task_step_impl() (GH-19990)Miss Islington (bot)2020-05-081-0/+4
* bpo-40138: Fix Windows os.waitpid() for large exit code (GH-19654)Victor Stinner2020-04-221-1/+3
* [3.8] bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) (GH-1...Serhiy Storchaka2020-04-181-3/+3
* bpo-40294: Fix _asyncio when module is loaded/unloaded multiple times (GH-19542)Miss Islington (bot)2020-04-171-0/+2
* closes bpo-40266, closes bpo-39953: Use numeric lib code if compiling against...Miss Islington (bot)2020-04-141-1248/+1248
* closes bpo-39953: Generate ifdefs around library code definitions. (GH-19490)Miss Islington (bot)2020-04-121-1/+53
* bpo-31758: Prevent crashes when using an uninitialized _elementtree.XMLParser...Miss Islington (bot)2020-04-121-0/+24
* closes bpo-39953: Update OpenSSL error codes table. (GH-19082)Miss Islington (bot)2020-04-111-379/+4702
* bpo-39689: Do not use native packing for format "?" with standard size (GH-18...Miss Islington (bot)2020-03-311-0/+3
* bpo-40121: Fixes audit event raised on creating a new socket (GH-19238)Miss Islington (bot)2020-03-311-3/+4
* bpo-40014: Fix os.getgrouplist() (GH-19126)Miss Islington (bot)2020-03-241-22/+25