summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* [typo] s/libexpact/libexpat/ in setup.py (GH-28624) (GH-28627)Miss Islington (bot)2021-09-291-1/+1
* bpo-44394: Ensure libexpat is linked against libm (GH-28617)Miss Islington (bot)2021-09-291-1/+3
* [3.9] bpo-39039: tarfile raises descriptive exception from zlib.error (GH-277...Łukasz Langa2021-09-293-0/+25
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540) (GH-28610)Miss Islington (bot)2021-09-282-0/+10
* [3.9] [docs] Improve the markup of powers (GH-28598) (GH-28608)Łukasz Langa2021-09-2814-24/+24
* bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595) ...Miss Islington (bot)2021-09-282-14/+15
* [doc] fix minor typo for argparse (GH-28451)Miss Islington (bot)2021-09-281-1/+1
* bpo-45296: Fix exit/quit message on Windows (GH-28577) (GH-28601)Miss Islington (bot)2021-09-283-0/+16
* bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549) (GH-28589)Victor Stinner2021-09-273-8/+53
* bpo-45274: Fix Thread._wait_for_tstate_lock() race condition (GH-28532)Miss Islington (bot)2021-09-272-4/+22
* bpo-45280: Add test for empty `NamedTuple` in `test_typing` (GH-28559) (GH-28...Miss Islington (bot)2021-09-262-0/+14
* [3.9] bpo-45166: fixes `get_type_hints` failure on `Final` (GH-28279) (GH-28561)Łukasz Langa2021-09-255-11/+57
* bpo-45277: Fix typo in codecs doc (GH-28555)Miss Islington (bot)2021-09-241-1/+1
* bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28544)Miss Islington (bot)2021-09-241-1/+1
* bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28537)Miss Islington (bot)2021-09-241-1/+2
* [docs] Update documentation for `multiprocessing.get_start_method` (GH-18170)...Miss Islington (bot)2021-09-231-1/+7
* [3.9] Fix legacy logging module URL (GH-28528) (GH-28531)Miss Islington (bot)2021-09-231-1/+1
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28524)Miss Islington (bot)2021-09-2329-69/+69
* [3.9] bpo-45238: Fix unittest.IsolatedAsyncioTestCase.debug() (GH-28449) (GH-...Łukasz Langa2021-09-224-62/+134
* [3.9] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28512)Łukasz Langa2021-09-2227-44/+43
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...Miss Islington (bot)2021-09-223-29/+73
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28506)Miss Islington (bot)2021-09-212-40/+2
* bpo-45209: fix `UserWarning: resource_tracker` in test_multiprocessing (GH-28...Miss Islington (bot)2021-09-212-0/+9
* bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)Miss Islington (bot)2021-09-211-0/+9
* [3.9] bpo-45021: Fix a hang in forked children (GH-28007) (GH-28481)Miss Islington (bot)2021-09-203-0/+21
* bpo-45229: Make pickle tests discoverable (GH-28467) (GH-28479)Miss Islington (bot)2021-09-203-47/+36
* bpo-40413: test_embed tests calling Py_RunMain() multiple times (GH-28466) (G...Miss Islington (bot)2021-09-202-4/+24
* bpo-45055: Add retry when downloading externals on Windows (GH-28399)Miss Islington (bot)2021-09-201-1/+18
* [3.9] bpo-45229: Remove test_main in many tests (GH-28405) (GH-28456)Serhiy Storchaka2021-09-2061-472/+211
* bpo-30637: Improve the docs of ast.parse regarding differences with compile()...Miss Islington (bot)2021-09-191-0/+13
* bpo-36674: Honour the skipping decorators in TestCase.debug() (GH-28446)Miss Islington (bot)2021-09-183-1/+77
* bpo-45235: Fix argparse overrides namespace with subparser defaults (GH-28420...Miss Islington (bot)2021-09-183-6/+15
* [3.9] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28441)Miss Islington (bot)2021-09-171-1/+1
* [doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660) (GH-28434)Miss Islington (bot)2021-09-181-1/+2
* bpo-42038: fix description of returned list of lines (GH-27529) (GH-28429)Miss Islington (bot)2021-09-181-6/+6
* Fix missing space with help for `-m compileall -o` (GH-27591) (GH-28431)Miss Islington (bot)2021-09-181-3/+3
* [doc] Add a missing apostrophe in a code example in venv.rst (GH-28391) (GH-2...Miss Islington (bot)2021-09-181-1/+1
* bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH...Miss Islington (bot)2021-09-171-9/+3
* [3.9] bpo-45187: Collect test_socket tests using unittest (GH-28317) (GH-28413)Łukasz Langa2021-09-171-78/+5
* bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-...Miss Islington (bot)2021-09-171-1/+2
* [3.9] docs: correct references to __isub__ etc (GH-28297). (GH-28415)Serhiy Storchaka2021-09-171-130/+130
* [3.9] bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-283...Serhiy Storchaka2021-09-171-11/+8
* bpo-45228: Fix stack buffer overflow in parsing J1939 address (GH-28404)Miss Islington (bot)2021-09-172-8/+9
* bpo-45220: Avoid automatically selecting the Windows 11 SDK preview when buil...Miss Islington (bot)2021-09-162-0/+6
* bpo-45208: Make test_pdb.test_checkline_is_not_executable() quiet (GH-28354) ...Victor Stinner2021-09-161-13/+14
* bpo-45205: Make test_compileall quiet (GH-28356) (GH-28364)Miss Islington (bot)2021-09-151-2/+4
* bpo-45167: Fix deepcopying of GenericAlias (GH-28324) (GH-28368)Miss Islington (bot)2021-09-153-5/+28
* bpo-45207: Make test_gdb.test_pycfunction() quiet (GH-28355) (GH-28366)Miss Islington (bot)2021-09-151-3/+11
* bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28372)Miss Islington (bot)2021-09-151-5/+13
* bpo-45195: Fix test_readline.test_nonascii() (GH-28329) (GH-28334)Miss Islington (bot)2021-09-152-1/+6