summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Fix invalid string escapeŁukasz Langa2023-08-241-2/+2
* [3.9] gh-108342: Make ssl TestPreHandshakeClose more reliable (GH-108370) (#1...Łukasz Langa2023-08-241-31/+71
* [3.9] gh-108342: Break ref cycle in SSLSocket._create() exc (GH-108344) (#108...Miss Islington (bot)2023-08-231-1/+5
* [3.9] gh-107845: Fix symlink handling for tarfile.data_filter (GH-107846) (#1...Petr Viktorin2023-08-222-9/+146
* [3.9] gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-99...Serhiy Storchaka2023-08-221-0/+47
* [3.9] gh-108310: Fix CVE-2023-40217: Check for & avoid the ssl pre-close flaw...Łukasz Langa2023-08-222-1/+245
* [3.9] gh-102153: Start stripping C0 control and space chars in `urlsplit` (GH...Miss Islington (bot)2023-05-222-1/+72
* [3.9] gh-99889: Fix directory traversal security flaw in uu.decode() (GH-1040...Miss Islington (bot)2023-05-222-1/+36
* [3.9] gh-104049: do not expose on-disk location from SimpleHTTPRequestHandler...Miss Islington (bot)2023-05-222-1/+9
* [3.9] gh-103935: Use `io.open_code()` when executing code in trace and profil...Steve Dower2023-05-223-3/+6
* [3.9] gh-102950: Implement PEP 706 – Filter for tarfile.extractall (GH-1029...Petr Viktorin2023-05-154-59/+1276
* [3.9] gh-101997: Update bundled pip version to 23.0.1 (GH-101998). (#102243)Pradyun Gedam2023-03-283-1/+1
* [3.9] gh-101283: Improved fallback logic for subprocess with shell=True on Wi...Miss Islington (bot)2023-02-091-1/+17
* [3.9] GH-100892: Fix race in clearing `threading.local` (GH-100922) (#100939)Kumar Aditya2023-01-201-0/+16
* [3.9] gh-100001: Omit control characters in http.server stderr logs. (GH-1000...Miss Islington (bot)2022-12-062-2/+31
* [3.9] gh-87604: Avoid publishing list of active per-interpreter audit hooks v...Steve Dower2022-11-212-0/+16
* [3.9] gh-98433: Fix quadratic time idna decoding. (GH-99092) (GH-99222) (#99230)Miss Islington (bot)2022-11-102-17/+21
* [3.9] gh-97514: Don't use Linux abstract sockets for multiprocessing (GH-9850...Miss Islington (bot)2022-10-281-5/+0
* [3.9] gh-98517: Fix buffer overflows in _sha3 module (GH-98519) (#98526)Miss Islington (bot)2022-10-281-0/+9
* [3.9] gh-96710: Make the test timing more lenient for the int/str DoS regress...Miss Islington (bot)2022-10-111-6/+8
* [3.9] gh-68966: Make mailcap refuse to match unsafe filenames/types/params (G...Miss Islington (bot)2022-10-112-4/+30
* Python 3.9.15v3.9.15Łukasz Langa2022-10-111-1/+1
* [3.9] gh-94208: Add even more TLS version/protocol checks for FreeBSD (#98037)Łukasz Langa2022-10-071-10/+16
* [3.9] gh-97897: Prevent os.mkfifo and os.mknod segfaults with macOS 13 SDK (G...Miss Islington (bot)2022-10-061-0/+22
* [3.9] gh-96848: Fix -X int_max_str_digits option parsing (GH-96988) (GH-97574)Miss Islington (bot)2022-10-041-0/+2
* [3.9] gh-97616: list_resize() checks for integer overflow (GH-97617) (GH-97627)Miss Islington (bot)2022-10-041-0/+13
* Python 3.9.14v3.9.14Łukasz Langa2022-09-061-28/+4
* [3.9] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96502)Gregory P. Smith2022-09-059-2/+307
* gh-95280: Fix test_get_ciphers on systems without RSA key exchange (GH-95282)...Miss Islington (bot)2022-07-291-2/+14
* [3.9] gh-94208: Add more TLS version/protocol checks for FreeBSD (GH-94347) (...Łukasz Langa2022-07-271-24/+32
* gh-94821: Fix autobind of empty unix domain address (GH-94826) (GH-94875)Miss Islington (bot)2022-07-261-0/+19
* [3.9] gh-90355: Add isolated flag if currently isolated (GH-92857) (GH-94570)Łukasz Langa2022-07-051-1/+6
* gh-87389: Fix an open redirection vulnerability in http.server. (GH-93879) (G...Miss Islington (bot)2022-06-222-2/+58
* gh-91810: Fix regression with writing an XML declaration with encoding='unico...Miss Islington (bot)2022-06-162-20/+8
* gh-93065: Fix HAMT to iterate correctly over 7-level deep trees (GH-93066) (#...Miss Islington (bot)2022-05-241-0/+35
* Python 3.9.13v3.9.13Łukasz Langa2022-05-171-29/+27
* [3.9] gh-92112: Fix crash triggered by an evil custom `mro()` (GH-92113) (GH-...Jelle Zijlstra2022-05-161-0/+17
* [3.9] bpo-34480: fix bug where match variable is used prior to being defined ...Marek Suscak2022-05-162-0/+23
* Check result of utc_to_seconds and skip fold probe in pure Python (GH-91582) ...Miss Islington (bot)2022-05-162-38/+94
* gh-92530: Fix an issue that occurred after interrupting threading.Condition.n...Miss Islington (bot)2022-05-161-7/+14
* [3.9] gh-92311: Let frame_setlineno jump over listcomps (#92740)Dennis Sweeney2022-05-121-0/+48
* bpo-42627: Fix incorrect parsing of Windows registry proxy settings (GH-26307)Miss Islington (bot)2022-05-111-16/+20
* [3.9] gh-91810: ElementTree: Use text file's encoding by default in XML decla...Miss Islington (bot)2022-05-112-30/+24
* bpo-13553: Document tkinter.Tk args (GH-4786)Miss Islington (bot)2022-05-101-4/+4
* bpo-46785: Fix race condition between os.stat() and unlink on Windows (GH-31858)Itai Steinherz2022-05-091-0/+43
* [3.10] gh-90622: Do not spawn ProcessPool workers on demand via fork method. ...Miss Islington (bot)2022-05-082-10/+44
* [3.9] gh-77630: Change Charset to charset (GH-92439) (GH-92477)Miss Islington (bot)2022-05-081-5/+5
* Add source for character mappings (GH-92014) (#92388)Miss Islington (bot)2022-05-061-0/+1
* [3.9] gh-80254: Disallow recursive usage of cursors in `sqlite3` converters (...Erlend Egeberg Aasland2022-05-051-0/+43
* bpo-47029: Fix BrokenPipeError in multiprocessing.Queue at garbage collection...Miss Islington (bot)2022-05-041-12/+11