summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Python 3.10.0v3.10.0Pablo Galindo2021-10-041-91/+66
* bpo-45310: Fix parrallel shared memory tests (GH-28661)Miss Islington (bot)2021-10-041-16/+24
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (G...Miss Islington (bot)2021-10-031-1/+1
* [3.10] Remove trailing spaces (GH-28709)Serhiy Storchaka2021-10-033-4/+4
* bpo-45249: Ensure the traceback module prints correctly syntax errors with ra...Miss Islington (bot)2021-09-292-6/+34
* bpo-44860: Update test_sysconfig for posix_user platlib (GH-28235) (GH-28251)Miss Islington (bot)2021-09-292-1/+12
* bpo-45118: Fix regrtest second summary for re-run tests (GH-28183) (GH-28214)Miss Islington (bot)2021-09-291-4/+7
* [3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511)Ɓukasz Langa2021-09-2913-14/+14
* Docs: Clarify the before_and_after() example (GH-28458) (#28464)Miss Islington (bot)2021-09-291-3/+4
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28505)Miss Islington (bot)2021-09-291-40/+0
* bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28543)Miss Islington (bot)2021-09-291-1/+1
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Miss Islington (bot)2021-09-271-1/+12
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...Miss Islington (bot)2021-09-222-29/+70
* bpo-45128: fixes `test_multiprocessing_fork` mysterious crash (GH-28387)Miss Islington (bot)2021-09-191-3/+4
* bpo-45121: Fix RecursionError when calling Protocol.__init__ from a subclass'...Miss Islington (bot)2021-09-192-0/+15
* bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343)Miss Islington (bot)2021-09-191-1/+1
* Add more itertool recipes (GH-28165)Miss Islington (bot)2021-09-071-0/+23
* Python 3.10.0rc2v3.10.0rc2Pablo Galindo2021-09-071-4/+7
* bpo-44860: Make sysconfig posix_user not depend on platlibdir (GH-27655) (GH-...Miss Islington (bot)2021-09-071-1/+1
* bpo-44963: Implement send() and throw() methods for anext_awaitable objects (...Miss Islington (bot)2021-09-071-0/+172
* Update idlelib/help.html to include idle.rst spelling fix (GH-28191)Miss Islington (bot)2021-09-071-13/+7
* bpo-45052: Unskips a failing `test_shared_memory_basics` test (GH-28182)Miss Islington (bot)2021-09-061-2/+0
* bpo-45102: unittest: add tests for skipping and errors in cleanup (GH-28166)Miss Islington (bot)2021-09-051-0/+138
* bpo-44571: Add itertool recipe for a variant of takewhile() (GH-28167)Miss Islington (bot)2021-09-051-0/+49
* bpo-45042: Now test classes decorated with `requires_hashdigest` are not skip...Miss Islington (bot)2021-09-043-6/+21
* bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)Miss Islington (bot)2021-09-041-2/+8
* [3.10] bpo-45097: Add more tests for shutdown_asyncgens() (GH-28154) (GH-28159)Miss Islington (bot)2021-09-041-0/+80
* [3.10] bpo-45060: Get rid of few uses of the equality operators with None (GH...Serhiy Storchaka2021-09-045-6/+6
* bpo-45081: Fix __init__ method generation when inheriting from Protocol (GH-2...Miss Islington (bot)2021-09-032-13/+45
* bpo-45057: Simplify RegressionTestResult (GH-28081) (GH-28101)Miss Islington (bot)2021-09-011-31/+2
* bpo-45059: Add module cleanup to IDLE test_macosx (GH-28102)Miss Islington (bot)2021-08-311-0/+9
* bpo-45059: Fix IDLE test typo: using "==" instead of "=" (GH-28086)Miss Islington (bot)2021-08-311-1/+1
* bpo-43913: Fix bugs in cleaning up classes and modules in unittest. (GH-28006)Miss Islington (bot)2021-08-303-70/+711
* bpo-41620: TestCase.run() now always return a TestResult instance (GH-28030)Miss Islington (bot)2021-08-302-24/+31
* bpo-43124: Fix smtplib multiple CRLF injection (GH-25987)Miss Islington (bot)2021-08-292-3/+63
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...Miss Islington (bot)2021-08-291-6/+7
* bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021)Miss Islington (bot)2021-08-292-2/+5
* bpo-25130: Make unit-test about restricting the maximum number of nested bloc...Miss Islington (bot)2021-08-281-32/+35
* [3.10] bpo-27334: roll back transaction if sqlite3 context manager fails to c...Erlend Egeberg Aasland2021-08-281-1/+74
* bpo-44524: Fix cryptic TypeError message when trying to subclass special form...Miss Islington (bot)2021-08-282-0/+19
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938)Miss Islington (bot)2021-08-281-16/+31
* bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two thre...Miss Islington (bot)2021-08-282-12/+27
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)Miss Islington (bot)2021-08-261-2/+3
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...Miss Islington (bot)2021-08-262-0/+4
* bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968)Miss Islington (bot)2021-08-264-7/+10
* bpo-45000: Raise SyntaxError when try to delete __debug__ (GH-27947) (GH-27957)Dong-hee Na2021-08-261-0/+4
* bpo-44524: Don't modify MRO when inheriting from typing.Annotated (GH-27841)Miss Islington (bot)2021-08-252-1/+11
* [3.10] bpo-34990: Treat the pyc header's mtime in compileall as an unsigned i...Miss Islington (bot)2021-08-243-11/+33
* bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904)Miss Islington (bot)2021-08-231-0/+12
* bpo-44980: fix test_constructor to return None value (GH-27898)Miss Islington (bot)2021-08-231-1/+1