summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-41403: Improve error message for invalid mock target (GH-30833)backport-f7955a8-3.9Irit Katriel2022-01-233-5/+13
* [3.9] bpo-21987: Fix TarFile.getmember getting a dir with a trailing slash (G...Miss Islington (bot)2022-01-233-1/+22
* [3.9] bpo-46474: Avoid REDoS in EntryPoint.pattern (sync with importlib_metad...Jason R. Coombs2022-01-232-2/+4
* Update documentation in datetime module strftime-and-strptime-behavior fix ty...Miss Islington (bot)2022-01-231-5/+5
* Document optional 'task'/'asyncgen' fields in call_exception_handler (GH-2173...Miss Islington (bot)2022-01-231-1/+4
* bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801)Miss Islington (bot)2022-01-221-0/+2
* bpo-46468: document that "-m http.server" defaults to port 8000 (GH-30776) (#...Miss Islington (bot)2022-01-221-7/+12
* bpo-46417: Fix race condition on setting type __bases__ (GH-30788) (GH-30790)Miss Islington (bot)2022-01-222-11/+21
* [3.9] bpo-46469: Make asyncio generic classes return GenericAlias (GH-30777) ...Kumar Aditya2022-01-228-24/+29
* bpo-46425: fix direct invocation of `asyncio` tests (GH-30725)Miss Islington (bot)2022-01-226-2/+25
* [3.9] bpo-46383: Fix signature of zoneinfo module_free function (GH-3… (GH-...Kumar Aditya2022-01-222-1/+3
* bpo-46442: improve and rename testExceptionCleanupNames (GH-30758)Miss Islington (bot)2022-01-211-2/+14
* bpo-46463: Fixes escape4chm.py script used when building the CHM documentatio...Miss Islington (bot)2022-01-212-4/+7
* bpo-43118: Fix bug in inspect.signature around 'base.__text_signature__' (GH-...Miss Islington (bot)2022-01-214-2/+27
* bpo-46434: Handle missing docstrings in pdb help (GH-30705)Miss Islington (bot)2022-01-214-0/+27
* [3.9] bpo-41857: mention timeout argument units in select.poll() and select.d...Tal Einat2022-01-212-3/+15
* bpo-46080: fix argparse help generation exception in edge case (GH-30111)Miss Islington (bot)2022-01-203-3/+9
* [3.9] Mark all clinic headers as generated (GH-30679). (GH-30728)Erlend Egeberg Aasland2022-01-201-5/+2
* [3.9] bpo-46425: Fix direct invocation of multiple test modules (GH-30666) (G...Nikita Sobolev2022-01-204-7/+5
* bpo-46437: remove useless `hasattr` from `test_typing` (GH-30704)Miss Islington (bot)2022-01-191-9/+7
* doc: Clarify os.urandom return type (GH-30282)Miss Islington (bot)2022-01-191-1/+1
* docs: correct outdated MappingProxyType docstrings (GH-30281)Miss Islington (bot)2022-01-191-3/+3
* [3.9] bpo-45680: Clarify documentation on ``GenericAlias`` objects (GH-29335)...Ken Jin2022-01-201-33/+84
* [3.9] bpo-46424: [typing] cover `Annotation[arg]` invalid usage in tests (GH-...Miss Islington (bot)2022-01-191-0/+4
* bpo-46231: Remove invalid_* rules preceded by more tokens from the grammar do...Miss Islington (bot)2022-01-191-2/+2
* [3.9] bpo-22039: [doc] clarify that there are no plans to disable deleting an...Miss Islington (bot)2022-01-191-2/+3
* [3.9] bpo-45554: Document multiprocessing.Process.exitcode values (GH-30142) ...Miss Islington (bot)2022-01-182-2/+10
* [3.9] bpo-46402: Promote SQLite URI tricks in sqlite3 docs (GH-30660) (#30672)Erlend Egeberg Aasland2022-01-182-9/+26
* bpo-20823: Clarify copyreg.pickle() documentation (GH-30230)Miss Islington (bot)2022-01-181-2/+2
* [3.9] bpo-46411: Remove unnecessary calls to sys.exc_info() in tests (GH-3063...Miss Islington (bot)2022-01-176-16/+14
* bpo-13886: Skip PTY non-ASCII tests if readline is loaded (GH-30631) (GH-30635)Miss Islington (bot)2022-01-172-2/+17
* bpo-20281, bpo-29964: update datetime docs to refer %z and %Z to a pre-existi...Miss Islington (bot)2022-01-141-7/+6
* Post 3.9.10Łukasz Langa2022-01-141-1/+1
* Merge tag 'v3.9.10' into 3.9Łukasz Langa2022-01-1459-360/+987
|\
| * Python 3.9.10v3.9.10Łukasz Langa2022-01-1359-360/+987
* | bpo-23183: Document the timeit output (GH-30359)Miss Islington (bot)2022-01-141-0/+7
* | bpo-46280: Fix tracemalloc_copy_domain() (GH-30591)Miss Islington (bot)2022-01-131-0/+3
|/
* bpo-40479: Fix typo, flag must be set for OpenSSL < 3.0.0 (GH-30584)Miss Islington (bot)2022-01-131-1/+1
* bpo-46070: _PyGC_Fini() untracks objects (GH-30577) (GH-30580)Victor Stinner2022-01-132-0/+29
* [3.9] bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455) (...Christian Heimes2022-01-139-236/+374
* bpo-46345: Add a test case for implicit `Optional` class attribute (GH-30535)Miss Islington (bot)2022-01-121-0/+6
* [doc] Add license_url for python-docs-theme 2022.1. (GH-30527) (GH-30541)Miss Islington (bot)2022-01-112-2/+3
* closes bpo-46253: Change Py_UNICODE to Py_UCS4 in the C API docs to match the...Miss Islington (bot)2022-01-111-17/+17
* bpo-46205: exit if no workers are alive in runtest_mp (GH-30470)Miss Islington (bot)2022-01-102-8/+11
* [3.9] bpo-46261: Update `sqlite3.Cursor.lastrowid` docs (GH-30407)Miss Islington (bot)2022-01-081-8/+9
* bpo-46290: Fix parameter names in dataclasses docs (GH-30450)Miss Islington (bot)2022-01-081-12/+12
* bpo-46299: improve `test_descr.py` with stricter error handling (GH-30471)Miss Islington (bot)2022-01-071-4/+4
* bpo-28546: [doc] Clarify setting pdb breakpoints (GH-30360)Miss Islington (bot)2022-01-071-5/+4
* bpo-46216: remove spurious link to os.system() from os.time() documentation (...Miss Islington (bot)2022-01-071-8/+8
* bpo-24650: Use full term "generator function" in yield expressions docs (GH-2...Miss Islington (bot)2022-01-071-2/+2