summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* [3.7] gh-98739: Update libexpat from 2.4.9 to 2.5.0 (GH-98742) (#98788)Miss Islington (bot)2022-10-283-18/+35
* [3.7] gh-98517: Fix buffer overflows in _sha3 module (GH-98519) (GH-98528)Miss Islington (bot)2022-10-211-7/+8
* [3.7] gh-96848: Fix -X int_max_str_digits option parsing (#96988) (#97576)Victor Stinner2022-10-051-1/+2
* [3.7] gh-97005: Update libexpat from 2.4.7 to 2.4.9 (gh-97006) (#97014)Miss Islington (bot)2022-10-057-17/+27
* [3.7] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (GH-96504)Gregory P. Smith2022-09-061-0/+56
* [3.7] gh-80254: Disallow recursive usage of cursors in sqlite3 converters (GH...Erlend Egeberg Aasland2022-05-231-14/+32
* bpo-46932: Update bundled libexpat to 2.4.7 (GH-31736) (GH-31741)Miss Islington (bot)2022-03-072-14/+155
* bpo-46794: Bump up the libexpat version into 2.4.6 (GH-31487) (GH-31521)Miss Islington (bot)2022-02-235-62/+132
* bpo-46784: Add newly exported expat symbols to the namespace. (GH-31397) (GH-...Miss Islington (bot)2022-02-211-0/+5
* bpo-46400: Update libexpat from 2.4.1 to 2.4.4 (GH-31022) (GH-31298)Dong-hee Na2022-02-215-29/+235
* [3.7] bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28042)Ɓukasz Langa2021-08-3120-175/+1366
* [3.7] closes bpo-42938: Replace snprintf with Python unicode formatting in ct...Benjamin Peterson2021-01-181-34/+21
* bpo-40791: Make compare_digest more constant-time. (GH-23438)Miss Islington (bot)2020-11-221-1/+1
* bpo-41100: additional fixes for testing on macOS 11 Big Sur IntelNed Deily2020-08-151-4/+0
* bpo-41288: Fix a crash in unpickling invalid NEWOBJ_EX. (GH-21458) (GH-21461)Miss Islington (bot)2020-07-131-8/+21
* closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-2...Miss Islington (bot)2020-07-071-2/+4
* [3.7] Revert bpo-39576: Prevent memory error for overly optimistic precisions...Stefan Krah2020-06-092-210/+6
* bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)Miss Islington (bot)2020-06-011-11/+45
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Miss Islington (bot)2020-05-271-0/+15
* [3.7] bpo-38580: Document that select() accepts iterables, not just sequences...Tal Einat2020-05-261-2/+2
* [3.8] bpo-35714: Reject null characters in struct format strings (GH-16928) (...Miss Islington (bot)2020-05-261-0/+4
* bpo-40653: Move _dirnameW out of GH-ifdef HAVE_SYMLINK/GH-endif (GH-20144)Miss Islington (bot)2020-05-181-2/+6
* [3.7] bpo-40457: Support OpenSSL without TLS 1.0/1.1 (GH-19862) (GH-20126)Miss Islington (bot)2020-05-161-34/+27
* [3.7] bpo-40515: Require OPENSSL_THREADS (GH-19953) (GH-20120)Christian Heimes2020-05-152-1/+9
* [3.7] 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)Miss Islington (bot)2020-04-221-1/+3
* [3.7] bpo-40179: Fix translation of #elif in Argument Clinic (GH-19364) (GH-1...Serhiy Storchaka2020-04-181-3/+3
* [3.7] bpo-31758: Prevent crashes when using an uninitialized _elementtree.XML...Miss Islington (bot)2020-04-121-0/+27
* bpo-39689: Do not use native packing for format "?" with standard size (GH-18...Miss Islington (bot)2020-03-311-0/+3
* bpo-40014: Fix os.getgrouplist() (GH-19126)Miss Islington (bot)2020-03-241-22/+25
* bpo-40014: Fix os.getgrouplist() on macOS (GH-19118)Miss Islington (bot)2020-03-231-0/+19
* [3.7] bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (G...Jason R. Coombs2020-03-221-0/+11
* [3.7] bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is...Serhiy Storchaka2020-03-211-7/+23
* bpo-39582: ossaudiodev module update helpers signature for ioctl calls. (GH-1...Miss Islington (bot)2020-03-141-3/+3
* [3.7] bpo-39871: Fix possible SystemError in atan2, copysign and remainder (G...Mark Dickinson2020-03-141-1/+5
* [3.7] bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase i...Serhiy Storchaka2020-03-121-0/+14
* bpo-39903: Fix double decref in _elementtree.Element.__getstate__ (GH-18850)Miss Islington (bot)2020-03-091-26/+17
* bpo-39378: partial of PickleState struct should be traversed. (GH-18046)Miss Islington (bot)2020-03-011-0/+1
* [3.7] bpo-39794: Add --without-decimal-contextvar (GH-18702)Stefan Krah2020-02-292-30/+177
* [3.7] bpo-39427: Document -X opt options in the CLI --help and the man page (...Pablo Galindo2020-02-231-1/+29
* bpo-39576: Prevent memory error for overly optimistic precisions (GH-18581) (...Miss Islington (bot)2020-02-212-6/+210
* Valgrind no longer supports --db-attach=yes. (GH-18568) (#18578)Miss Islington (bot)2020-02-201-1/+1
* Use the new recommended number of repetitions in the refleak tests. (GH-18569...Miss Islington (bot)2020-02-201-1/+1
* Update runall.bat to the latest Windows build system. (GH-18571) (#18572)Miss Islington (bot)2020-02-201-41/+59
* closes bpo-39510: Fix use-after-free in BufferedReader.readinto() (GH-18295)Miss Islington (bot)2020-02-041-0/+1
* bpo-39421: Fix posible crash in heapq with custom comparison operators (GH-18...Miss Islington (bot)2020-01-231-9/+26
* [3.7] bpo-16575: Disabled checks for union types being passed by value. (GH-1...Vinay Sajip2020-01-121-0/+19
* Add PYTHONUTF8 to commandline usage. (GH-17587) (GH-17599)Inada Naoki2019-12-141-0/+1
* [3.7] bpo-38820: OpenSSL 3.0.0 compatibility. (GH-17190) (GH-17500)Miss Islington (bot)2019-12-071-1/+48
* [3.7] Make repr of C accelerated TaskWakeupMethWrapper the same as of pure Py...Andrew Svetlov2019-12-071-0/+16