summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-032-3/+3
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697)Raymond Hettinger2021-10-021-1/+1
* bpo-45125: Improves pickling docs and tests for `shared_memory` (GH-28294)Nikita Sobolev2021-10-011-31/+104
* Revert "Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-2...Serhiy Storchaka2021-10-011-47/+45
* bpo-45310: Fix parrallel shared memory tests (GH-28661)Serhiy Storchaka2021-10-011-16/+24
* bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow2021-10-017-14/+108
* bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654)Serhiy Storchaka2021-09-303-52/+30
* Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-28650)Pablo Galindo Salgado2021-09-301-45/+47
* bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner2021-09-301-1/+48
* bpo-45229: Make datetime tests discoverable (GH-28615)Serhiy Storchaka2021-09-291-47/+45
* [typo] Fix threading.Barrier comment that used confusing punctuation (GH-28623)Łukasz Langa2021-09-291-1/+1
* bpo-24391: Better reprs for threading objects. (GH-20534)Serhiy Storchaka2021-09-292-0/+58
* bpo-39039: tarfile raises descriptive exception from zlib.error (GH-27766)Jack DeVries2021-09-292-0/+23
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540)Nikita Sobolev2021-09-281-0/+9
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-282-0/+27
* bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595)Pablo Galindo Salgado2021-09-281-6/+12
* bpo-45296: Fix exit/quit message on Windows (GH-28577)Terry Jan Reedy2021-09-282-0/+14
* bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549)Victor Stinner2021-09-272-8/+50
* bpo-45249: Ensure the traceback module prints correctly syntax errors with ra...Pablo Galindo Salgado2021-09-272-6/+34
* bpo-45211: Move helpers from getpath.c to internal API. (gh-28550)Eric Snow2021-09-271-1/+1
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Pablo Galindo Salgado2021-09-271-1/+12
* bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)Victor Stinner2021-09-271-4/+17
* bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559)Nikita Sobolev2021-09-261-0/+13
* bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279)Nikita Sobolev2021-09-254-10/+54
* bpo-44019: Implement operator.call(). (GH-27888)Antony Lee2021-09-242-0/+19
* bpo-20524: adds better error message for `.format()` (GH-28310)Nikita Sobolev2021-09-241-0/+28
* bpo-30951: Correct co_names docstring in inspect module (GH-2743)Alex Vig2021-09-241-1/+1
* bpo-39359: [zipfile] add missing "pwd: expected bytes, got str" exception (GH...Daniel Hillier2021-09-232-6/+19
* bpo-38415: Allow using @asynccontextmanager-made ctx managers as decorators (...Jason Fried2021-09-232-0/+84
* bpo-39549: reprlib.Repr uses a “fillvalue” attribute (GH-18343)Alexander Böhn2021-09-222-9/+22
* bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449)Serhiy Storchaka2021-09-223-61/+174
* [codemod] Fix non-matching bracket pairs (GH-28473)Mohamad Mansour2021-09-2113-14/+14
* [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-212-29/+70
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445)Nikita Sobolev2021-09-211-40/+0
* bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...Nikita Sobolev2021-09-211-0/+7
* 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-211-7/+42
* bpo-45021: Fix a hang in forked children (GH-28007)nullptr2021-09-202-0/+20
* bpo-45155: Apply new byteorder default values for int.to/from_bytes (GH-28465)Raymond Hettinger2021-09-205-15/+15
* bpo-45229: Make pickle tests discoverable (GH-28467)Serhiy Storchaka2021-09-203-47/+36
* bpo-40497: Fix handling of check in subprocess.check_output() (GH-19897)Rémi Lapeyre2021-09-202-2/+11
* bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)Serhiy Storchaka2021-09-2017-188/+122
* bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466)Victor Stinner2021-09-201-0/+8
* Docs: Clarify the before_and_after() example (GH-28458)Raymond Hettinger2021-09-201-3/+4
* bpo-45128: fixes `test_multiprocessing_fork` mysterious crash (GH-28387)Nikita Sobolev2021-09-191-3/+4
* bpo-45229: Fix setUpModule in test_ssl (GH-28454)Serhiy Storchaka2021-09-191-2/+0
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-1961-485/+209
* bpo-30856: Update TestResult early, without buffering in _Outcome (GH-28180)Serhiy Storchaka2021-09-196-65/+70
* bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)Serhiy Storchaka2021-09-182-1/+75