summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-278-100/+164
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Pablo Galindo Salgado2021-09-275-8/+31
* bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)Victor Stinner2021-09-272-4/+22
* bpo-44958: Revert GH-27844 (GH-28574)Erlend Egeberg Aasland2021-09-263-40/+39
* bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559)Nikita Sobolev2021-09-262-0/+14
* bpo-21302: Add nanosleep() implementation for time.sleep() in Unix (GH-28545)Victor Stinner2021-09-257-33/+114
* bpo-43914: Whats New 310: add new SyntaxError attributes (GH-28558)Terry Jan Reedy2021-09-251-1/+6
* bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279)Nikita Sobolev2021-09-255-10/+56
* bpo-45277: Fix typo in codecs doc (GH-28555)Terry Jan Reedy2021-09-251-1/+1
* bpo-41299: Mark private thread_nt.h functions as static (GH-28553)Victor Stinner2021-09-241-10/+10
* bpo-41299: Fix EnterNonRecursiveMutex() (GH-28548)Victor Stinner2021-09-241-3/+0
* bpo-41299: QueryPerformanceFrequency() cannot fail (GH-28552)Victor Stinner2021-09-241-21/+7
* bpo-45020: Fix some corner cases for frozen module generation. (gh-28538)Eric Snow2021-09-245-69/+130
* bpo-44019: Add missing comma to operator.call doc (GH-28551)Terry Jan Reedy2021-09-241-1/+1
* bpo-44019: Implement operator.call(). (GH-27888)Antony Lee2021-09-246-0/+62
* bpo-20524: adds better error message for `.format()` (GH-28310)Nikita Sobolev2021-09-243-7/+50
* bpo-30951: Correct co_names docstring in inspect module (GH-2743)Alex Vig2021-09-241-1/+1
* bpo-38623: Add note about site module (site-packages) (GH-16974)Peter Bittner2021-09-231-1/+2
* bpo-39359: [zipfile] add missing "pwd: expected bytes, got str" exception (GH...Daniel Hillier2021-09-233-6/+20
* bpo-38415: Allow using @asynccontextmanager-made ctx managers as decorators (...Jason Fried2021-09-233-0/+87
* [docs] Update documentation for `multiprocessing.get_start_method` (GH-18170)Sam Sneddon2021-09-231-1/+7
* Fix legacy logging module URL (GH-28528)Sean Leavey2021-09-231-1/+1
* bpo-43760: Document PyThreadState.use_tracing removal (GH-28527)Victor Stinner2021-09-231-0/+3
* bpo-41137: Reorganize What's New in Python 3.11 (GH-28518)Victor Stinner2021-09-231-78/+77
* bpo-39549: reprlib.Repr uses a “fillvalue” attribute (GH-18343)Alexander Böhn2021-09-224-9/+34
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515)Serhiy Storchaka2021-09-2229-69/+69
* bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449)Serhiy Storchaka2021-09-224-61/+176
* bpo-21302: time.sleep() uses waitable timer on Windows (GH-28483)Victor Stinner2021-09-226-56/+161
* bpo-45061: Revert unicode_is_singleton() change (GH-28516)Victor Stinner2021-09-221-2/+4
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-2129-33/+35
* [tests] Add missing assert against expected tracebacks in test_exceptions.py ...andrei kulakov2021-09-211-0/+1
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...andrei kulakov2021-09-213-29/+73
* bpo-45061: Detect refcount bug on empty string singleton (GH-28504)Victor Stinner2021-09-212-20/+40
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445)Nikita Sobolev2021-09-212-40/+2
* bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)Victor Stinner2021-09-216-5/+41
* bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...Nikita Sobolev2021-09-212-0/+9
* bpo-24076: Fix reference in sum() introduced by GH-28469 (GH-28493)Pablo Galindo Salgado2021-09-211-1/+2
* bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)Raymond Hettinger2021-09-211-0/+9
* bpo-45200: Ignore test_multiprocessing_* in ASAN build due to false positives...Pablo Galindo Salgado2021-09-211-1/+1
* bpo-44958: Fix ref. leak introduced in GH-27844 (GH-28490)Erlend Egeberg Aasland2021-09-212-30/+36
* bpo-44958: Only reset `sqlite3` statements when needed (GH-27844)Erlend Egeberg Aasland2021-09-214-46/+82
* bpo-24076: Inline single digit unpacking in the integer fastpath of sum() (GH...scoder2021-09-212-1/+10
* bpo-45021: Fix a hang in forked children (GH-28007)nullptr2021-09-203-0/+21
* bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)Raymond Hettinger2021-09-205-15/+15
* bpo-44848: Update Windows installer to use SQLite 3.36.0 (GH-27622)Erlend Egeberg Aasland2021-09-204-3/+4
* bpo-45229: Make pickle tests discoverable (GH-28467)Serhiy Storchaka2021-09-203-47/+36
* bpo-1514420: Do not attempt to open files with names in <>s when formatting a...Irit Katriel2021-09-202-0/+10
* bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)Rémi Lapeyre2021-09-203-2/+15
* bpo-45055: Add retry when downloading externals on Windows (GH-28399)Steve Dower2021-09-201-1/+18
* bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)Serhiy Storchaka2021-09-2017-188/+122