summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [3.11] gh-114107: test.pythoninfo logs Windows Developer Mode (GH-114121) ↵Miss Islington (bot)2024-01-161-16/+44
| | | | | | | | | | | | (#114128) gh-114107: test.pythoninfo logs Windows Developer Mode (GH-114121) Also, don't skip the whole collect_windows() if ctypes is missing. Log also ctypes.windll.shell32.IsUserAnAdmin(). (cherry picked from commit c77f552ec02040dfe14a0a3cb743d96eedffadec) Co-authored-by: Victor Stinner <vstinner@python.org>
* [3.11] gh-114069: Revise Tutorial Methods paragraph (GH-114127) (#114132)Miss Islington (bot)2024-01-161-6/+5
| | | | | | | | gh-114069: Revise Tutorial Methods paragraph (GH-114127) Remove excess words in the first and third sentences. (cherry picked from commit 31a2543c80e1e38c97e50533249d9aa00e2f6cae) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* [3.11] Docs: Align multiprocessing.shared_memory docs with Sphinx ↵Erlend E. Aasland2024-01-162-49/+56
| | | | | | | | | | | recommendations (#114103) (#114114) (cherry picked from commit af852740862169cf3e8789a13b86a7b1d03b91db) - add :class: and :mod: markups where needed - fix incorrect escaping of a star in ShareableList arg spec - mark up parameters with stars: *val* - mark up list of built-in types using list markup - remove unneeded parentheses from :meth: markups
* [3.11] gh-114077: Fix OverflowError in socket.sendfile() when pass count ↵Miss Islington (bot)2024-01-162-1/+3
| | | | | | | >2GiB (GH-114079) (GH-114111) (cherry picked from commit d4dfad2aa9e76038302b0c5a29ebacc2723ed50d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] GH-101130: Document multiple arguments for ↵Barney Gale2024-01-161-0/+4
| | | | | | `PurePath.[is_]relative_to()` (#114034) 3.11-only change as this is already covered in the 3.12+ deprecation warning.
* [3.11] gh-114070: correct the specification of ``digit`` in the float() docs ↵Miss Islington (bot)2024-01-151-5/+4
| | | | | | | | (GH-114080) (#114095) gh-114070: correct the specification of ``digit`` in the float() docs (GH-114080) (cherry picked from commit 4f24b92aa0677ed5310dd2d1572b55f4e30c88ef) Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
* [3.11] gh-101100: Fix Sphinx warnings in `howto/urllib2.rst` and ↵Hugo van Kemenade2024-01-147-46/+46
| | | | | `library/http.client.rst` (GH-114060) (#114064) (cherry picked from commit c2808431b32fa7bc0d222d4549389f781f1a7333)
* [3.11] gh-101225: Increase the socket backlog when creating a ↵Miss Islington (bot)2024-01-143-2/+6
| | | | | | | | | | | | | | multiprocessing.connection.Listener (GH-113567) (#114019) gh-101225: Increase the socket backlog when creating a multiprocessing.connection.Listener (GH-113567) Increase the backlog for multiprocessing.connection.Listener` objects created by `multiprocessing.manager` and `multiprocessing.resource_sharer` to significantly reduce the risk of getting a connection refused error when creating a `multiprocessing.connection.Connection` to them. (cherry picked from commit c7d59bd8cfa053e77ae3446c82afff1fd38a4886) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* [3.11] gh-95649: Document that asyncio contains uvloop code (GH-107536) ↵Alois Klink2024-01-147-0/+49
| | | | | | | | | | | | (#114045) Some of the asyncio SSL changes in GH-31275 [1] were taken from v0.16.0 of the uvloop project [2]. In order to comply with the MIT license, we need to just need to document the copyright information. [1]: https://github.com/python/cpython/pull/31275 [2]: https://github.com/MagicStack/uvloop/tree/v0.16.0 (cherry picked from commit dce30c9cbc212e5455e100f35ac6afeb30dfd23e)
* [3.11] gh-114014: Update `fractions.Fraction()`'s rational parsing regex ↵Mark Dickinson2024-01-133-10/+35
| | | | | | | | | | | (GH-114015) (#114025) Fix a bug in the regex used for parsing a string input to the `fractions.Fraction` constructor. That bug led to an inconsistent exception message being given for some inputs. --------- Co-authored-by: Crowthebird <78076854+thatbirdguythatuknownot@users.noreply.github.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* [3.11] gh-114021: Pin various sphinxcontrib extensions to older versions ↵Miss Islington (bot)2024-01-131-5/+5
| | | | | | | | (GH-114022) (#114029) [3.12] gh-114021: Pin various sphinxcontrib extensions to older versions (GH-114022) (cherry picked from commit 94b1d1fa38ada8cf7d196184a04a195c152eed75) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com>
* [3.11] gh-89159: Document missing TarInfo members (GH-91564) (#114007)Miss Islington (bot)2024-01-121-0/+30
| | | | | | gh-89159: Document missing TarInfo members (GH-91564) (cherry picked from commit 3aa4b839e4aa01d4e8bc5c7685fd0eb17c4609b8) Co-authored-by: Stanley <46876382+slateny@users.noreply.github.com>
* [3.11] datamodel: Fix a typo in ``object.__init_subclass__`` (GH-111599) ↵Miss Islington (bot)2024-01-121-1/+1
| | | | | | | | (#114005) datamodel: Fix a typo in ``object.__init_subclass__`` (GH-111599) (cherry picked from commit a47353d587b78bb5501b21343d9bca739c49a43a) Co-authored-by: InSync <122007197+InSyncWithFoo@users.noreply.github.com>
* [3.11] Link to the glossary for "magic methods" in ``MagicMock`` (GH-111292) ↵Miss Islington (bot)2024-01-121-4/+4
| | | | | | | | | | | | (#114003) Link to the glossary for "magic methods" in ``MagicMock`` (GH-111292) The MagicMock documentation mentions magic methods several times without actually pointing to the term in the glossary. This can be helpful for people to fully understand what those magic methods are. (cherry picked from commit e97da8677f7bbc6d970e230d334cd646ab662af1) Co-authored-by: Pierre Equoy <pierre.equoy@canonical.com>
* [3.11] gh-101100: Fix Sphinx Lint warnings in `Misc/` (GH-113946) (#114001)Hugo van Kemenade2024-01-1244-337/+337
|
* [3.11] Tutorial: Clarify 'nonzero exit status' in the appendix (GH-112039) ↵Miss Islington (bot)2024-01-121-1/+1
| | | | | | | | (#114000) Tutorial: Clarify 'nonzero exit status' in the appendix (GH-112039) (cherry picked from commit 32f3684b8f18d757945eee67a697cb4a95c697db) Co-authored-by: Andrew Zipperer <47086307+zipperer@users.noreply.github.com>
* [3.11] Docs: Amend codeobject.co_lines docs; end number is exclusive ↵Miss Islington (bot)2024-01-121-3/+3
| | | | | | | | (GH-113970) (#113988) The end number should be exclusive, not inclusive. (cherry picked from commit e68806c7122070078507b370b13bb225f8501ff8) Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* [3.11] gh-113027: Fix test_variable_tzname in test_email (GH-113821) (GH-113832)Miss Islington (bot)2024-01-121-2/+2
| | | | | | | | | Determine the support of the Kyiv timezone by checking the result of astimezone() which uses the system tz database and not the one populated by zoneinfo. (cherry picked from commit 931d7e052e22aa01e18fcc67ed71b6ea305aff71) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113903: Fix an IDLE configdialog test (GH-113973) (#113975)Miss Islington (bot)2024-01-123-16/+16
| | | | | | | | | | | | | | test_configdialog.HighPageTest.test_highlight_target_text_mouse fails if a line of the Highlight tab text sample is not visible. If so, bbox() in click_char() returns None and the unpacking iteration fails. This occurred on a Devuan Linux system. Fix by moving the 'see character' call inside click_char, just before the bbox call. Also, reduce the click_char calls to just one per tag name and replace the other nested function with a dict comprehension. (cherry picked from commit c4992f4106aa509375f5beca8dc044a7f6c36a72) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* [3.11] GH-107678: Improve Unicode handling clarity in ``library/re.rst`` ↵Miss Islington (bot)2024-01-121-92/+145
| | | | | | | | (GH-107679) (#113966) GH-107678: Improve Unicode handling clarity in ``library/re.rst`` (GH-107679) (cherry picked from commit c9b8a22f3404d59e2c4950715f8c29413a349b8e) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* [3.11] GH-92584: Move installation schemes overview to sysconfig docs ↵Adam Turner2024-01-113-19/+168
| | | | | | | | | | | | | | (GH-108018) (#110214) * Add new installation path functions subsection * Add content from install/index to sysconfig * Fix table * Update note about installers * Clean up the list of schemes, remove references to Distutils. (cherry picked from commit f16e81f368d08891e28dc1f038c1826ea80d7801)
* gh-81489: Use Unicode APIs for mmap tagname on Windows (GH-14133)Steve Dower2024-01-114-27/+32
| | | | Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Erlend E. Aasland <erlend@python.org>
* gh-87868: Sort and remove duplicates in getenvironment() (GH-102731)Miss Islington (bot)2024-01-113-5/+210
| | | | | | | | (cherry picked from commit c31be58da8577ef140e83d4e46502c7bb1eb9abf) Co-authored-by: AN Long <aisk@users.noreply.github.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Pieter Eendebak <pieter.eendebak@gmail.com> Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
* [3.11] gh-109858: Protect zipfile from "quoted-overlap" zipbomb (GH-110016) ↵Miss Islington (bot)2024-01-113-0/+75
| | | | | | | | | (GH-113913) Raise BadZipFile when try to read an entry that overlaps with other entry or central directory. (cherry picked from commit 66363b9a7b9fe7c99eba3a185b74c5fdbf842eba) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113625: Align object addresses in the Descriptor HowTo Guide ↵Miss Islington (bot)2024-01-101-1/+1
| | | | | | | | (GH-113894) (#113923) gh-113625: Align object addresses in the Descriptor HowTo Guide (GH-113894) (cherry picked from commit 901a971e161e060bd95f3cf3aeebe8b48d6e6dac) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
* [3.11] gh-113594: Fix UnicodeEncodeError in TokenList.fold() (GH-113730) ↵Miss Islington (bot)2024-01-103-0/+48
| | | | | | | | (GH-113908) It occurred when try to re-encode an unknown-8bit part combined with non-unknown-8bit part. (cherry picked from commit e9d5b6ea2d68564f176fdf70c2d7028e060c62b5) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113664: Improve style of Big O notation (GH-113695) (GH-113910)Serhiy Storchaka2024-01-1014-25/+25
| | | | Use cursive to make it looking like mathematic formulas. (cherry picked from commit a8629816c6c0e6770248a60529fd7c9ba08aad55)
* [3.11] gh-113877: Fix Tkinter method winfo_pathname() on 64-bit Windows ↵Miss Islington (bot)2024-01-103-0/+15
| | | | | | | | | | (GH-113900) (GH-113902) winfo_id() converts the result of "winfo id" command to integer, but "winfo pathname" command requires an argument to be a hexadecimal number on Win64. (cherry picked from commit 1b7e0024a16c1820f61c04a8a100498568410afd) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113781: Silence AttributeError in warning module during Python ↵Miss Islington (bot)2024-01-092-3/+6
| | | | | | | | finalization (GH-113813) (GH-113874) The tracemalloc module can already be cleared. (cherry picked from commit 0297418cacf998e778bc0517aa11eaac827b8c0f) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113842: Add missing error check for PyIter_Next() in ↵Miss Islington (bot)2024-01-091-0/+6
| | | | | | | Python/symtable.c (GH-113843) (GH-113852) (cherry picked from commit fda901a1ff94ea6cc338b74928acdbc5ee165ed7) Co-authored-by: Yan Yanchii <yyanchiy@gmail.com>
* [3.11] gh-101100: Fix Sphinx warnings for 2.6 port-specific deprecations ↵Hugo van Kemenade2024-01-092-81/+75
| | | | (GH-113752) (#113847)
* [3.11] Docs: Link tokens in the format string grammars (GH-108184) (#113840)Miss Islington (bot)2024-01-093-8/+12
| | | | | | | | Docs: Link tokens in the format string grammars (GH-108184) (cherry picked from commit f3d5d4aa8f0388217aeff69e28d078bdda464b38) Co-authored-by: William Andrea <william.j.andrea@gmail.com> Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
* [3.11] gh-74678: Increase base64 test coverage (GH-21913) (GH-113810)Miss Islington (bot)2024-01-081-0/+3
| | | | | | | | Ensure the character y is disallowed within an Ascii85 5-tuple. (cherry picked from commit 802d4954f12541ba28dd7f18bf4a65054941a80d) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Lee Cannon <leecannon@leecannon.xyz>
* [3.11] gh-80109: Fix io.TextIOWrapper dropping the internal buffer during ↵Miss Islington (bot)2024-01-084-8/+24
| | | | | | | | | write() (GH-22535) (GH-113809) io.TextIOWrapper was dropping the internal decoding buffer during read() and write() calls. (cherry picked from commit 73c93265634257b1488262097e024c1727260cfd) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
* [3.11] gh-113729: Fix IDLE's Help -> "IDLE Help" menu bug in 3.12.1 and ↵Miss Islington (bot)2024-01-065-20/+26
| | | | | | | | 3.11.7 (GH-113731) (#113766) (cherry picked from commit 66f39648154214621d388f519210442d5fce738f) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
* [3.11] gh-85567: Fix resouce warnings in pickle and pickletools CLIs ↵Miss Islington (bot)2024-01-053-13/+30
| | | | | | | | (GH-113618) (GH-113759) Explicitly open and close files instead of using FileType. (cherry picked from commit bd754b93ca837aa1f239252437a211271d068b71) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-113360: Fix the documentation of module's attribute __test__ ↵Miss Islington (bot)2024-01-051-3/+3
| | | | | | | | (GH-113393) (GH-113761) It can only be a dict since Python 2.4. (cherry picked from commit d99d8712253c3affc54cf7f6e71f161dea8347ce) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
* [3.11] gh-101100: Fix Sphinx warnings in `library/pyclbr.rst` (GH-113739) ↵Miss Islington (bot)2024-01-053-50/+58
| | | | | | | (#113749) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* [3.11] gh-80532: Do not set ipv6type when cross-compiling (GH-17956) (#113741)Erlend E. Aasland2024-01-053-2/+3
| | | | | | (cherry picked from commit 5e1916ba1bf521d6ff9d2c553c057f3ef7008977) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Co-authored-by: Xavier de Gaye <xdegaye@gmail.com>
* [3.11] gh-110190: Fix ctypes structs with array on PPCLE64 (GH-112959) (#113167)Diego Russo2024-01-054-207/+209
| | | | | | | Fix the same issue of PR #112604 on PPC64LE platform Refactor tests to make easier to add more platfroms if needed. (cherry picked from commit 6644ca45cde9ca1b80513a90dacccfeea2d98620) Change-Id: I1ada30808c0d593a43eca3fa7a628c26bc276310
* [3.11] gh-101100: Fix Sphinx warnings for 2.6 deprecations and removals ↵Miss Islington (bot)2024-01-058-57/+57
| | | | | | | | (GH-113725) (#113735) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com> Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* [3.11] gh-113696: Docs: Annotate PyObject_CallOneArg and PyObject_CallNoArgs ↵Miss Islington (bot)2024-01-051-0/+7
| | | | | | | as returning a strong reference (GH-113697) (#113699) (cherry picked from commit 1ae7ceba29771baf8f2e8d2d4c50a0355cb6b5c8) Co-authored-by: Jamie Phan <jamie@ordinarylab.dev>
* [3.11] gh-113538: Don't error in stream reader protocol callback when task ↵Miss Islington (bot)2024-01-043-7/+21
| | | | | | | is cancelled (GH-113690) (#113714) (cherry picked from commit 4681a5271a8598b46021cbc556ac8098ab8a1d81) Co-authored-by: Guido van Rossum <guido@python.org>
* [3.11] Document the `co_lines` method on code objects (#113682) (#113687)Alex Waygood2024-01-034-9/+47
| | | | | (cherry-picked from commit f1f839243251fef7422c31d6a7c3c747e0b5e27c) Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* [3.11] `functools.partial` docs: Use the more common spelling for ↵Miss Islington (bot)2024-01-031-1/+1
| | | | | | | | "referenceable" (GH-113675) (#113678) `functools.partial` docs: Use the more common spelling for "referenceable" (GH-113675) (cherry picked from commit 4de468cce106221968d7ac08ddd94571b903c194) Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
* [3.11] gh-113637: Let c_annotations.py to handle the spacing of ↵Ege Akman2024-01-033-10/+12
| | | | Limited/Unstable API & Stable ABI translation strings (#113638) (#113679)
* [3.11] gh-113628: Fix test_site test with long stdlib paths (GH-113640) ↵Miss Islington (bot)2024-01-031-22/+21
| | | | | | | | (#113672) gh-113628: Fix test_site test with long stdlib paths (GH-113640) (cherry picked from commit 5dc79e3d7f26a6a871a89ce3efc9f1bcee7bb447) Co-authored-by: Itamar Oren <itamarost@gmail.com>
* [3.11] gh-113602: Bail out when the parser tries to override existing errors ↵Miss Islington (bot)2024-01-023-0/+8
| | | | | | | | | (GH-113607) (#113653) gh-113602: Bail out when the parser tries to override existing errors (GH-113607) (cherry picked from commit 9ed36d533ab8b256f0a589b5be6d7a2fdcf4aff2) Signed-off-by: Pablo Galindo <pablogsal@gmail.com> Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com>
* [3.11] Use the official term "free-threading" for GitHub Action (g… (#113647)Donghee Na2024-01-022-6/+6
|
* [3.11] gh-101100: Fix Sphinx warnings from removed `~!` references ↵Hugo van Kemenade2024-01-021-1/+1
| | | | | | | (GH-113629) (#113642) (cherry picked from commit 7595380347610598a3f5529214a449660892537b) Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>