summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.9.0b2v3.9.0b2Ɓukasz Langa2020-06-081-3/+3
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Victor Stinner2020-06-081-7/+15
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721) (GH-20723)Victor Stinner2020-06-081-3/+31
* [3.9] Remove PEG-specific syntax error check in the old parser (GH-20717)Pablo Galindo2020-06-081-4/+0
* bpo-40903: Handle multiple '=' in invalid assignment rules in the PEG parser ...Miss Islington (bot)2020-06-081-1/+20
* Deny eval() direct access to builtins (GH-20713) (GH-20714)Miss Islington (bot)2020-06-081-1/+2
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Miss Islington (bot)2020-06-086-191/+112
* bpo-40904: Fix segfault in the new parser with f-string containing yield stat...Miss Islington (bot)2020-06-081-0/+2
* bpo-39791: Support file systems that cannot support non-ascii filenames (skip...Miss Islington (bot)2020-06-072-2/+18
* bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683)Miss Islington (bot)2020-06-071-0/+5
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Miss Islington (bot)2020-06-061-0/+7
* bpo-40862: Raise TypeError when const is given to argparse.BooleanOptionalAct...Miss Islington (bot)2020-06-062-1/+8
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-2065...Miss Islington (bot)2020-06-054-15/+72
* Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (GH-20655) (#20660)Miss Islington (bot)2020-06-051-0/+2
* bpo-40807: Show warnings once from codeop._maybe_compile (GH-20486)Miss Islington (bot)2020-06-042-9/+18
* bpo-17258: Add requires_hashdigest to multiprocessing tests (GH-20412)Miss Islington (bot)2020-06-042-0/+12
* [3.9] bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578) (GH-20618)Victor Stinner2020-06-031-1/+4
* [3.9] bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20613)Victor Stinner2020-06-031-6/+16
* Update error message in _zoneinfo.py to use f-string (GH-20577)Miss Islington (bot)2020-06-031-1/+1
* bpo-40767: Allow pure Wayland to get default XDG web browser (GH-20382)Miss Islington (bot)2020-06-031-1/+1
* [3.9] bpo-40630: Add tracemalloc.reset_peak (GH-20102) (GH-20545)Huon Wilson2020-06-011-0/+24
* Make sure that keyword arguments are merged into the arguments dictionary whe...Miss Islington (bot)2020-06-011-0/+18
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Miss Islington (bot)2020-06-014-515/+490
* bpo-40759: Deprecate the symbol module (GH-20364)Miss Islington (bot)2020-05-311-0/+9
* Fix asyncio.to_thread() documented return type (GH-20547)Miss Islington (bot)2020-05-311-1/+1
* bpo-39885: Make IDLE context menu cut and copy work again (GH-18951)Miss Islington (bot)2020-05-293-16/+50
* Further de-linting of zoneinfo module (GH-20499)Miss Islington (bot)2020-05-294-12/+5
* bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435) (GH...Miss Islington (bot)2020-05-291-0/+11
* bpo-40784: Fix sqlite3 deterministic test (GH-20448)Miss Islington (bot)2020-05-291-9/+27
* bpo-39040: Fix parsing of email mime headers with whitespace between encoded-...Miss Islington (bot)2020-05-292-0/+28
* bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494)Miss Islington (bot)2020-05-281-20/+26
* bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485)Miss Islington (bot)2020-05-281-0/+4
* [3.9] bpo-40791: Use CRYPTO_memcmp() for compare_digest (GH-20456) (GH-20461)Christian Heimes2020-05-282-36/+55
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Miss Islington (bot)2020-05-273-27/+44
* [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-2...Pablo Galindo2020-05-271-0/+5
* bpo-30064: Fix asyncio loop.sock_* race condition issue (GH-20369)Miss Islington (bot)2020-05-272-16/+156
* [3.9] Backport GH-20370 and GH-20436: Soft keywords (GH-20458)Lysandros Nikolaou2020-05-271-0/+42
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Miss Islington (bot)2020-05-271-0/+15
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)Miss Islington (bot)2020-05-262-4/+7
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (GH-20422)Miss Islington (bot)2020-05-261-9/+23
* bpo-35714: Reject null characters in struct format strings (GH-16928)Miss Islington (bot)2020-05-261-0/+8
* Simplify creation of the __new__ method in namedtuple() (GH-20361) (GH-20409)Miss Islington (bot)2020-05-261-4/+2
* [3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20...Lysandros Nikolaou2020-05-261-1/+13
* bpo-40246: Fix test_fstring when run with the old parser (GH-20402)Lysandros Nikolaou2020-05-261-1/+7
* bpo-23082: Better error message for PurePath.relative_to() from pathlib (GH-1...Miss Islington (bot)2020-05-251-1/+2
* bpo-38972: Fix typos in PowerShell Execution Policies links (GH-20383)Miss Islington (bot)2020-05-251-1/+1
* bpo-40695: Limit hashlib builtin hash fallback (GH-20259)Miss Islington (bot)2020-05-251-2/+3
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)Miss Islington (bot)2020-05-242-0/+16
* bpo-40443: Remove unused imports in the zoneinfo (GH-20354)Miss Islington (bot)2020-05-242-4/+0
* bpo-37309: Update IDLE NEWS.txt (GH-20356)Miss Islington (bot)2020-05-241-0/+1