summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646) ↵Miss Islington (bot)2021-10-062-1/+8
| | | | | | | | | (GH-28771) Operating systems without support for TCP_NODELAY will raise an OSError when trying to set the socket option, but the show can still go on. (cherry picked from commit 0571b934f5f9198c3461a7b631d7073ac0a5676f) Co-authored-by: rtobar <rtobarc@gmail.com>
* bpo-34804: [doc] Rephrase section on side effects in functional.rst for ↵Miss Islington (bot)2021-10-061-5/+4
| | | | | | | | clarity (GH-27989) (GH-28762) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 7af95a1e8097b2aab2cbe8de88727809e745b658) Co-authored-by: DonnaDia <37962843+DonnaDia@users.noreply.github.com>
* [3.10] [doc] Fix typos found using codespell (GH-28744) (GH-28758)Christian Clauss2021-10-0612-16/+16
|
* bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28684) ↵Miss Islington (bot)2021-10-055-4/+5
| | | | | | | (GH-28746) (cherry picked from commit 4c8d543823dde5a30615da61727837a48f7ab847) Co-authored-by: Illia Volochii <illia.volochii@gmail.com>
* sqlite3: Modernize documentation around unicode and bytes. (GH-28652) (GH-28694)Miss Islington (bot)2021-10-052-4/+4
| | | | | (cherry picked from commit 1dac95c814763eb8a53896ac4326d8d51895d43d) Co-authored-by: Julien Palard <julien@palard.fr>
* [doc] Fix gethostbyname_ex description (GH-28700) (GH-28742)Miss Islington (bot)2021-10-051-2/+2
| | | | | | It seems part of `gethostbyname_ex` doc was copied from `gethostbyaddr`. The latter has an `ip_address` parameter whereas the former doesn't. (cherry picked from commit 4103280b83e1419bef535a42813d6dbe83bfe880) Co-authored-by: Andre Delfino <adelfino@gmail.com>
* bpo-44050: Extension modules can share state when they don't support ↵Miss Islington (bot)2021-10-054-1/+59
| | | | | | | | sub-interpreters. (GH-27794) (GH-28738) Automerge-Triggered-By: GH:encukou (cherry picked from commit b9bb74871b27d9226df2dd3fce9d42bda8b43c2b) Co-authored-by: Hai Shi <shihai1992@gmail.com>
* bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712)Miss Islington (bot)2021-10-051-4/+7
| | | | | (cherry picked from commit de4052fe0633e3a053e66c8477f13677054d6ede) Co-authored-by: Jeremy Kloth <jeremy.kloth@gmail.com>
* [3.10] bpo-45371: Fix distutils' rpath support for clang (GH-28732) (GH-28733)Miss Islington (bot)2021-10-052-1/+5
| | | | | | | | | Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit ef6196028f966f22d82930b66e1371e75c5df2f7) Co-authored-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: GH:tiran
* [3.10] bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089) ↵John Belmonte2021-10-054-4/+76
| | | | | | | | | | | | | | (GH-28730) Make enter_context(foo()) / enter_async_context(foo()) equivalent to `[async] with foo()` regarding __context__ when an exception is raised. Previously exceptions would be caught and re-raised with the wrong context when explicitly overriding __context__ with None.. (cherry picked from commit e6d1aa1ac65b6908fdea2c70ec3aa8c4f1dffcb5) Co-authored-by: John Belmonte <john@neggie.net> Automerge-Triggered-By: GH:njsmith
* Post 3.10.0Pablo Galindo2021-10-041-1/+1
|
* Merge tag 'v3.10.0' into 3.10Pablo Galindo2021-10-044-96/+166
|\ | | | | | | Python 3.10.0
| * Python 3.10.0v3.10.0Pablo Galindo2021-10-0415-597/+169
| |
| * bpo-45310: Fix parrallel shared memory tests (GH-28661)Miss Islington (bot)2021-10-041-16/+24
| | | | | | | | | | | | | | | | Add a PID to names of POSIX shared memory objects to allow running multiprocessing tests (test_multiprocessing_fork, test_multiprocessing_spawn, etc) in parallel. (cherry picked from commit eb4495e8e275c83d691add116c4f2b74e73e3cc8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
| * hashlib: Fix old message about unicode objects. (GH-28653)Miss Islington (bot)2021-10-031-1/+1
| | | | | | | | | | | | (cherry picked from commit 9ce0f48e918860ffa32751a85b0fe7967723e2e3) Co-authored-by: Julien Palard <julien@palard.fr>
| * bpo-45291: Explicitly set --libdir=lib when configure OpenSSL (GH-28566) ↵Miss Islington (bot)2021-10-031-0/+1
| | | | | | | | | | | | | | (GH-28616) (cherry picked from commit bc4cde40339dd372960f27401d8fdaa4dab0f469) Co-authored-by: zhanpon <pon.zhan@gmail.com>
| * bpo-45341: Replace 'Packaging' with 'Package' in "Python P... Index" (GH-28687)Miss Islington (bot)2021-10-032-7/+7
| | | | | | | | | | | | pypi.org " The Python Package Index (PyPI) ... (cherry picked from commit 0be338199fd663f020d833a4db185d0c5a0e0078) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
| * bpo-45346: Keep docs consistent regarding true and false values (GH-28697) ↵Miss Islington (bot)2021-10-033-6/+6
| | | | | | | | (GH-28698)
| * [3.10] Remove trailing spaces (GH-28709)Serhiy Storchaka2021-10-0315-17/+17
| |
| * bpo-45350: Rerun autoreconf with the pkg-config macros (GH-28707)Pablo Galindo Salgado2021-10-033-5/+484
| |
| * bpo-45249: Ensure the traceback module prints correctly syntax errors with ↵Miss Islington (bot)2021-09-292-6/+34
| | | | | | | | | | | | | | ranges (GH-28575) (cherry picked from commit 20f439b6b9e1032930a31b88694ab9f37a09e6b4) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
| * bpo-45067 - Verify the version of ncurses for extended color support feature ↵Miss Islington (bot)2021-09-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | usage. (GH-28260) * issue45067 - Fix _curses compilation in CentOS 7. Verify the version of ncurses for extended color support feature usage. The function extended_color_content was introduced in 2017. The ncurses-devel package in CentOS 7 had a older version ncurses resulted in compilation error. For compiling ncurses with extended color support, we verify the version of the ncurses library. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> (cherry picked from commit 794430700defb913512f871b701a888aa730de81) Co-authored-by: Senthil Kumaran <senthil@python.org>
| * bpo-44860: Update test_sysconfig for posix_user platlib (GH-28235) (GH-28251)Miss Islington (bot)2021-09-293-1/+14
| | | | | | | | | | | | | | Update test_sysconfig.test_user_similar() for the posix_user scheme: "platlib" doesn't use sys.platlibdir. (cherry picked from commit 49acac00c08838d8080ce00d02c05284b94f8fb2) Co-authored-by: Victor Stinner <vstinner@python.org>
| * bpo-45118: Fix regrtest second summary for re-run tests (GH-28183) (GH-28214)Miss Islington (bot)2021-09-291-4/+7
| | | | | | | | | | | | | | Fix regrtest second summary when using -w/--verbose2 command line option: lists re-run tests in the second test summary. (cherry picked from commit c4ea45d7d2c02674db2fdb96c7eee89324d2dc64) Co-authored-by: Victor Stinner <vstinner@python.org>
| * [3.10] [codemod] Fix non-matching bracket pairs (GH-28473) (GH-28511)Łukasz Langa2021-09-2929-31/+38
| | | | | | | | | | | | | | | | | | Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 8f943ca25732d548cf9f0b0393ba8d582fb93e29) Co-authored-by: Mohamad Mansour <66031317+mohamadmansourX@users.noreply.github.com>
| * [doc] Clarify exception in `multiprocessing.cpu_count` (GH-23660) (GH-28433)Miss Islington (bot)2021-09-291-1/+2
| | | | | | | | | | | | | | | | Previous wording didn't explain the slightly unintuitive behavior. Co-authored-by: kj <28750310+Fidget-Spinner@users.noreply.github.com> (cherry picked from commit 24dbe30f8df80740704db3743d071b3218d1276e) Co-authored-by: Emmanuel Arias <eamanu@yaerobi.com>
| * bpo-42038: fix description of returned list of lines (GH-27529) (GH-28428)Miss Islington (bot)2021-09-291-6/+6
| | | | | | | | | | (cherry picked from commit aca0e08c5dcc11a8011697331931cde0b21270f2) Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
| * [doc] Add a missing apostrophe in a code example in venv.rst (GH-28391) ↵Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | | | | | (GH-28425) (cherry picked from commit d22a700091af35ce52db0b1fbb02115bb6efbb1f) Co-authored-by: Arkaprabha Chakraborty <chakrabortyarkaprabha998@gmail.com>
| * bpo-45217: adds note that `allow_no_value` in `configparser` is optional ↵Miss Islington (bot)2021-09-291-1/+2
| | | | | | | | | | | | | | | | (GH-28396) (GH-28418) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit cb07838ab756564988b1ffd23871f1222a832446) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
| * Fix typo and add a module prefix (GH-28401)Miss Islington (bot)2021-09-291-2/+2
| | | | | | | | | | (cherry picked from commit 80d9ff16483b6c1898bcdcc811b5450b57a5e573) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
| * docs: correct references to __isub__ etc (GH-28297)Miss Islington (bot)2021-09-291-132/+132
| | | | | | | | | | (cherry picked from commit 800bd01b6d365156403c3dde61765dc5fdbf64be) Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com>
| * bpo-45089: Improve sqlite3 trace callback docs (GH-28238) (GH-28371)Miss Islington (bot)2021-09-291-5/+13
| | | | | | | | | | | | | | - Add link to str object and sqlite3 transaction control - Mention that exceptions are not propagated (cherry picked from commit 51056b40e711d84692d099ac8970077b33c7fafd) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no>
| * bpo-9811: [doc] strftime handling of unsupported format specifiers is ↵Miss Islington (bot)2021-09-291-1/+2
| | | | | | | | | | | | | | platform dependent (GH-28264) (GH-28277) (cherry picked from commit e86bcfa58080f152f242c756f625f4015671f168) Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
| * bpo-44964: Correct the note about the f_lasti field (GH-28208) (GH-28276)Miss Islington (bot)2021-09-292-4/+4
| | | | | | | | | | (cherry picked from commit ab327f2929589407595a3de95727c8ab34ddd4af) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
| * bpo-45024 and bpo-23864: Document how interface testing works with the ↵Miss Islington (bot)2021-09-292-63/+168
| | | | | | | | collections ABCs (GH-28218) (GH-28266)
| * Fix small mistake in fileinput documentation (GH-28241)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | (cherry picked from commit 5afb570d2e21d4c4e91802c4948569302f9c1a7b) Co-authored-by: Jean-Abou-Samra <37271310+Jean-Abou-Samra@users.noreply.github.com>
| * [3.10] Fix minor typo in Doc/c-api/type.rst (GH-28432) (GH-28440)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | | | | | | | | | retreived-> retrieved (cherry picked from commit af08f1ba40505bf1380c08b57ba4e0b8969a8358) Co-authored-by: Konstantin Popov <konst.hardy@gmail.com> Automerge-Triggered-By: GH:Fidget-Spinner
| * bpo-45198: __set_name__ documentation not clear about its usage with ↵Miss Islington (bot)2021-09-292-30/+36
| | | | | | | | | | | | | | non-descriptor classes (GH-28439) (cherry picked from commit 94b462686b7dfabbd69cc9401037d736d71c4dc2) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
| * Docs: Clarify the before_and_after() example (GH-28458) (#28464)Miss Islington (bot)2021-09-292-6/+8
| | | | | | | | | | | | | | (cherry picked from commit fcbf9b176b1190301c760a921601c6488ef8b070) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
| * [3.10] bpo-45246: Document that sorted() only uses "<" comparisons ↵Łukasz Langa2021-09-291-0/+9
| | | | | | | | | | | | | | (GH-28494) (GH-28502) (cherry picked from commit 9a0dcc5b2e04d9c51350107734f12a1cbc0284a7) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
| * bpo-45216: Remove extraneous method docs from `difflib` (GH-28445) (GH-28505)Miss Islington (bot)2021-09-292-40/+2
| | | | | | | | | | (cherry picked from commit 06e1773c8d8fe375423bb7fcf5922b49bc737b75) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
| * Fix legacy logging module URL (GH-28528)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | | | | | | | The URL listed in the `logging` docs for the original `logging` module leads to a 404. I managed to find the new location for the page and updated the URL. Automerge-Triggered-By: GH:vsajip (cherry picked from commit 8492b729ae97737d22544f2102559b2b8dd03a03) Co-authored-by: Sean Leavey <SeanDS@users.noreply.github.com>
| * bpo-43760: Document PyThreadState.use_tracing removal (GH-28527) (GH-28529)Miss Islington (bot)2021-09-291-0/+3
| | | | | | | | | | (cherry picked from commit f4ccb79d52ee726d58bbb038ea98b4deec52001d) Co-authored-by: Victor Stinner <vstinner@python.org>
| * bpo-41203: Replace Mac OS X and OS X with macOS (GH-28515) (GH-28523)Miss Islington (bot)2021-09-2929-69/+69
| | | | | | | | | | | | | | | | | | | | Replace old names when they refer to actual versions of macOS. Keep historical names in references to older versions. Co-authored-by: Patrick Reader <_@pxeger.com> (cherry picked from commit 36122e18148c5b6c78ebce1d36d514fd7cf250f5) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
| * [docs] Update documentation for `multiprocessing.get_start_method` ↵Miss Islington (bot)2021-09-291-1/+7
| | | | | | | | | | | | | | (GH-18170) (GH-28533) (cherry picked from commit af90b5498b8c6acd67b50fdad007d26dfd1c5823) Co-authored-by: Sam Sneddon <me@gsnedders.com>
| * bpo-30951: Correct co_names docstring in inspect module (GH-2743) (GH-28543)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | (cherry picked from commit 3f8b23f8ddab75d9b77a3997d54e663187e12cc8) Co-authored-by: Alex Vig <jalexvig@gmail.com>
| * bpo-38623: Add note about site module (site-packages) (GH-16974) (GH-28536)Miss Islington (bot)2021-09-291-1/+2
| | | | | | | | | | (cherry picked from commit 55b45bf707c6c8084db259fe2f8aa08e84ea0d99) Co-authored-by: Peter Bittner <django@bittner.it>
| * bpo-45277: Fix typo in codecs doc (GH-28555)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | | | encoding => encode (cherry picked from commit 4c0fc65cd8a6d4c18330505576ccd4b46abeec1c) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
| * [doc] fix minor typo for argparse (GH-28451)Miss Islington (bot)2021-09-291-1/+1
| | | | | | | | | | | | "A JSONDecodeError" instead of "An JSONDecodeError". (cherry picked from commit db0133f98dd42d0fb82a7675bde175cec51bb860) Co-authored-by: Louis Sautier <sautier.louis@gmail.com>
| * [3.10] [docs] Improve the markup of powers (GH-28598) (GH-28607)Łukasz Langa2021-09-2914-24/+24
| | | | | | | | | | (cherry picked from commit 4f05f15d7b25ef8b690cb94fdc4c8cb5521a4e27) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>