summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-45310: Fix parrallel shared memory tests (GH-28661)branch-v3.10.0Miss Islington (bot)2021-10-041-16/+24
* hashlib: Fix old message about unicode objects. (GH-28653)Miss Islington (bot)2021-10-041-1/+1
* bpo-45291: Explicitly set --libdir=lib when configure OpenSSL (GH-28566) (GH-...Miss Islington (bot)2021-10-041-0/+1
* bpo-45341: Replace 'Packaging' with 'Package' in "Python P... Index" (GH-28687)Miss Islington (bot)2021-10-042-7/+7
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697) (G...Miss Islington (bot)2021-10-043-6/+6
* [3.10] Remove trailing spaces (GH-28709)Serhiy Storchaka2021-10-0415-17/+17
* bpo-45350: Rerun autoreconf with the pkg-config macros (GH-28707)Pablo Galindo Salgado2021-10-043-5/+484
* bpo-45249: Ensure the traceback module prints correctly syntax errors with ra...Miss Islington (bot)2021-09-292-6/+34
* bpo-45067 - Verify the version of ncurses for extended color support feature ...Miss Islington (bot)2021-09-291-2/+2
* bpo-44860: Update test_sysconfig for posix_user platlib (GH-28235) (GH-28251)Miss Islington (bot)2021-09-293-1/+14
* 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-2929-31/+38
* [doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660) (GH-28433)Miss Islington (bot)2021-09-291-1/+2
* bpo-42038: fix description of returned list of lines (GH-27529) (GH-28428)Miss Islington (bot)2021-09-291-6/+6
* [doc] Add a missing apostrophe in a code example in venv.rst (GH-28391) (GH-2...Miss Islington (bot)2021-09-291-1/+1
* bpo-45217: adds note that `allow_no_value` in `configparser` is optional (GH-...Miss Islington (bot)2021-09-291-1/+2
* Fix typo and add a module prefix (GH-28401)Miss Islington (bot)2021-09-291-2/+2
* docs: correct references to __isub__ etc (GH-28297)Miss Islington (bot)2021-09-291-132/+132
* bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28371)Miss Islington (bot)2021-09-291-5/+13
* bpo-9811: [doc] strftime handling of unsupported format specifiers is platfor...Miss Islington (bot)2021-09-291-1/+2
* bpo-44964: Correct the note about the f_lasti field (GH-28208) (GH-28276)Miss Islington (bot)2021-09-292-4/+4
* bpo-45024 and bpo-23864: Document how interface testing works with the collec...Miss Islington (bot)2021-09-292-63/+168
* Fix small mistake in fileinput documentation (GH-28241)Miss Islington (bot)2021-09-291-1/+1
* [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440)Miss Islington (bot)2021-09-291-1/+1
* bpo-45198: __set_name__ documentation not clear about its usage with non-desc...Miss Islington (bot)2021-09-292-30/+36
* Docs: Clarify the before_and_after() example (GH-28458) (#28464)Miss Islington (bot)2021-09-292-6/+8
* [3.10] bpo-45246: Document that sorted() only uses "<" comparisons (GH-28494)...Łukasz Langa2021-09-291-0/+9
* bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28505)Miss Islington (bot)2021-09-292-40/+2
* Fix legacy logging module URL (GH-28528)Miss Islington (bot)2021-09-291-1/+1
* bpo-43760: Document PyThreadState.use_tracing removal (GH-28527) (GH-28529)Miss Islington (bot)2021-09-291-0/+3
* bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28523)Miss Islington (bot)2021-09-2929-69/+69
* [docs] Update documentation for `multiprocessing.get_start_method` (GH-18170)...Miss Islington (bot)2021-09-291-1/+7
* bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28543)Miss Islington (bot)2021-09-291-1/+1
* bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28536)Miss Islington (bot)2021-09-291-1/+2
* bpo-45277: Fix typo in codecs doc (GH-28555)Miss Islington (bot)2021-09-291-1/+1
* [doc] fix minor typo for argparse (GH-28451)Miss Islington (bot)2021-09-291-1/+1
* [3.10] [docs] Improve the markup of powers (GH-28598) (GH-28607)Łukasz Langa2021-09-2914-24/+24
* [3.10] bpo-45307: Restore private C API function _PyImport_FindExtensionObjec...Serhiy Storchaka2021-09-293-0/+22
* bpo-43914: Correctly highlight SyntaxError exceptions for invalid generator e...Miss Islington (bot)2021-09-275-8/+31
* [3.10] bpo-43914: What's New 3.10: add new SyntaxError attributes (GH-28558) ...Łukasz Langa2021-09-261-1/+6
* bpo-45234: Fix FileNotFound exception raised instead of IsADirectoryError in ...Miss Islington (bot)2021-09-223-29/+73
* bpo-45128: fixes `test_multiprocessing_fork` mysterious crash (GH-28387)Miss Islington (bot)2021-09-202-3/+6
* bpo-30637: Improve the docs of ast.parse regarding differences with compile()...Miss Islington (bot)2021-09-201-0/+13
* bpo-45121: Fix RecursionError when calling Protocol.__init__ from a subclass'...Miss Islington (bot)2021-09-193-0/+17
* bpo-44640: Improve punctuation consistency in isinstance/issubclass error mes...Miss Islington (bot)2021-09-191-2/+2
* bpo-45193: News for IDLE PR_28343 (GH-28348)Miss Islington (bot)2021-09-191-0/+1
* bpo-45193: Restore IDLE completion boxes on Ubuntu (GH-28343)Miss Islington (bot)2021-09-191-1/+1
* bpo-4356: Mention the new key arguments for the bisect module APIs in the 3.1...Miss Islington (bot)2021-09-141-0/+6
* Fix minor typo in 3.10.rst (GH-28253) (GH-28259)Miss Islington (bot)2021-09-141-1/+1
* Remove documentation for non-existing socket class attributes (GH-28029)Miss Islington (bot)2021-09-071-3/+0