summaryrefslogtreecommitdiffstats
path: root/Doc/library
Commit message (Collapse)AuthorAgeFilesLines
...
* gh-70870: Clarify dual usage of 'free variable' (#122545)Alyssa Coghlan2024-10-084-13/+15
| | | | | | | | | | | | | | The term "free variable" has unfortunately become genuinely ambiguous over the years (presumably due to the names of some relevant code object instance attributes). While we can't eliminate that ambiguity at this late date, we can at least alert people to the potential ambiguity by describing both the formal meaning of the term and the common alternative use as a direct synonym for "closure variable". --------- Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
* gh-124653: Relax (again) detection of queue API for logging handlers ↵Bénédikt Tran2024-10-071-5/+6
| | | | (GH-124897)
* gh-125018: Fix role syntax (#125050)Adam Turner2024-10-071-5/+5
|
* gh-125018: Add importlib.metadata semantic link targets (#125027)Alyssa Coghlan2024-10-071-44/+144
| | | | | | | | | This allows direct intersphinx references to APIs via references like `` :func:`importlib.metadata.version` ``. --------- Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <wk.cvs.github@sydorenko.org.ua> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* gh-121249: Support _Complex types in the struct module (#121613)Sergey B Kirpichev2024-10-071-0/+19
| | | | | Co-authored-by: Peter Bierma <zintensitydev@gmail.com> Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Co-authored-by: Victor Stinner <vstinner@python.org>
* gh-125025: `_thread` docs: fix/update the *caveats* list (GH-125026)Jan Kaliszewski2024-10-061-7/+2
|
* Simplify partial() rough equivalent code (gh-124941)Raymond Hettinger2024-10-031-2/+1
|
* gh-66436: Improved prog default value for argparse.ArgumentParser (GH-124799)Serhiy Storchaka2024-10-011-9/+32
| | | | | | | | | It can now have one of three forms: * basename(argv0) -- for simple scripts * python arv0 -- for directories, ZIP files, etc * python -m module -- for imported modules Co-authored-by: Alyssa Coghlan <ncoghlan@gmail.com>
* Highlight `datetime.timedelta.seconds` vs `.total_seconds()` in docs. ↵Gregory P. Smith2024-10-011-1/+15
| | | | | (GH-124811) Thanks to the reviewers for suggesting the use of a "caution" section instead of "warning" or "note".
* gh-116750: Add clear_tool_id function to unregister events and callbacks ↵Tian Gao2024-10-011-7/+5
| | | | (#124568)
* gh-118974: Add `decorator` argument to `make_dataclass` (gh-122723)Victorien2024-10-011-1/+9
| | | This is to allow the `dataclasses.make_dataclass` infrastructure to be used with another decorator that's compliant with `typing.dataclass_transform`. The new `decorator` argument to `dataclasses.make_dataclass` is `dataclasses.dataclass`, which used to be hard coded.
* gh-124400: Use the normal command path for breakpoint commands (#124401)Tian Gao2024-09-291-5/+8
| | | Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com>
* Docs: improve generic `typing.NamedTuple` example (#124739)CBerJun2024-09-291-1/+3
|
* gh-61181: Fix support of choices with string value in argparse (GH-124578)Serhiy Storchaka2024-09-291-1/+1
| | | Substrings of the specified string no longer considered valid values.
* docs: improve venv docs (#124540)Jelle Zijlstra2024-09-281-28/+25
| | | | | | | | | - Move "versionchanged" notes that apply to the whole class to the end of the class docs - Remove or move notes next to the method list that apply to individual methods. - Mark up parameters using the appropriate syntax - Do not capitalize "boolean" - Shorten some text
* gh-90190: Add doc for using `singledispatch` with precise collection type ↵Matt Delengowski2024-09-271-0/+19
| | | | | | hints (#116544)
* Itertool docs: Minor clarifications, wording tweaks, spacing, and active ↵Raymond Hettinger2024-09-271-13/+21
| | | | | voice. (gh-124690) Minor clarifications, wording tweaks, spacing, and active voice.
* Fixup indentation for docs on `ModuleSpec` attributes (#124681)Alex Waygood2024-09-271-43/+36
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
* gh-113878: Add `doc` parameter to `dataclasses.field` (gh-114051)sobolevn2024-09-271-1/+5
| | | If using `slots=True`, the `doc` parameter ends up in the `__slots__` dict. The `doc` parameter is also in the corresponding `Field` object.
* Docs: Update and proofread `library/venv.rst` (#124121)Hugo van Kemenade2024-09-261-11/+131
| | | | | | Co-authored-by: C.A.M. Gerlach <CAM.Gerlach@Gerlach.CAM> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* gh-84559: Change the multiprocessing start method default to `forkserver` ↵Gregory P. Smith2024-09-262-14/+21
| | | | | | | | (GH-101556) Change the default multiprocessing start method away from fork to forkserver or spawn on the remaining platforms where it was fork. See the issue for context. This makes the default far more thread safe (other than for people spawning threads at import time... - don't do that!). Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* gh-119180: Rename SOURCE format to STRING (#124620)Jelle Zijlstra2024-09-262-12/+12
|
* gh-119127: functools: Improve docs for partial and Placeholder (#124575)Jelle Zijlstra2024-09-261-15/+17
|
* gh-118181: Fix parameter markup in AST docs (#124473)Tomas R2024-09-261-13/+13
|
* gh-123560: Correct docs for "empty" format type for floats (#123561)Sergey B Kirpichev2024-09-261-3/+5
|
* gh-124234: Improve docs for `Mock.reset_mock` (#124237)sobolevn2024-09-261-10/+33
|
* gh-120284: Enhance `asyncio.run` to accept awaitable objects (#120566)Ron Frederick2024-09-261-8/+22
| | | | Co-authored-by: Kumar Aditya <kumaraditya@python.org>
* gh-119127: functools.partial placeholders (gh-119827)dgpb2024-09-261-13/+59
|
* gh-124412: Add helpers for converting annotations to source format (#124551)Jelle Zijlstra2024-09-261-0/+36
|
* GH-58058: Add quick reference for `ArgumentParser` to argparse docs (gh-124227)Savannah Ostrowski2024-09-251-0/+19
|
* gh-41431: Add `datetime.time.strptime()` and `datetime.date.strptime()` ↵Nice Zombies2024-09-251-15/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (#120752) * Python implementation * C implementation * Test `date.strptime` * Test `time.strptime` * 📜🤖 Added by blurb_it. * Update whatsnew * Update documentation * Add leap year note * Update 2024-06-19-19-53-42.gh-issue-41431.gnkUc5.rst * Apply suggestions from code review Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> * Remove parentheses * Use helper function * Remove bad return * Link to github issue * Fix directive * Apply suggestions from code review Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com> * Fix test cases --------- Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com> Co-authored-by: Paul Ganssle <1377457+pganssle@users.noreply.github.com>
* gh-121277: Allow `.. versionadded:: next` in docs (GH-121278)Petr Viktorin2024-09-255-10/+10
| | | | | | | | | | Make `versionchanged:: next`` expand to current (unreleased) version. When a new CPython release is cut, the release manager will replace all such occurences of "next" with the just-released version. (See the issue for release-tools and devguide PRs.) Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* gh-123884 Tee of tee was not producing n independent iterators (gh-124490)Raymond Hettinger2024-09-251-19/+30
|
* gh-101100: Add a table of class attributes to the "Custom classes" section ↵Alex Waygood2024-09-2514-91/+67
| | | | of the data model docs (#124480)
* gh-123756: Disable restart command if pdb is in inline mode (#123757)Tian Gao2024-09-251-1/+15
|
* gh-123223: Adding hyperlink of argument in warnings.catch_warnings: (#123231)Damien2024-09-251-0/+3
| | | | | * Adding hyperlink of argument * Modify as reviewer suggested
* gh-123968: fix -f/--float command line option description (#124517)Robert Wolff2024-09-251-1/+1
| | | | | | | | | | | * fix -f/--float command line option description See gh-123968 gh-124009 * Update Doc/library/random.rst --------- Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com>
* gh-124285: Fix bug where bool() is called multiple times for the same part ↵Irit Katriel2024-09-251-0/+6
| | | | of a boolean expression (#124394)
* gh-123014: Disable pidfd API on older Android versions (#124458)Malcolm Smith2024-09-252-2/+2
|
* gh-123445: calendar: Improve descriptions for day and month attributes (#123483)Mat S2024-09-251-4/+20
| | | | | Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com> Co-authored-by: Eric V. Smith <ericvsmith@users.noreply.github.com> Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* Doc: Improve documentation for the ``path`` argument in ``shutil.which()`` ↵Tom Most2024-09-251-6/+7
| | | | (#124494)
* gh-90562: Support zero argument super with dataclasses when slots=True ↵Eric V. Smith2024-09-251-7/+0
| | | | | | (gh-124455) Co-authored-by: @wookie184 Co-authored-by: Carl Meyer <carl@oddbird.net>
* gh-120254: Add a `commands` argument to `pdb.set_trace` (#120255)Tian Gao2024-09-241-1/+7
|
* GH-87358: Add clarification about nargs and default argparse behaviour (#124094)Savannah Ostrowski2024-09-241-0/+3
|
* gh-65169: Clarify prog default in argparse (GH-31602)Stanley2024-09-241-4/+5
|
* gh-124120: Document `Annotated.__origin__` (#124125)sobolevn2024-09-241-0/+18
| | | | Co-authored-by: Brian Schubert <brianm.schubert@gmail.com> Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-100980: ctypes: Test, document, and fix finalizing _fields_ (GH-124292)Petr Viktorin2024-09-241-7/+14
| | | | | | | | - If setting `_fields_` fails, e.g. with AttributeError, don't set the attribute in `__dict__` - Document the “finalization” behaviour - Beef up tests: add `getattr`, test Union as well as Structure - Put common functionality in a common function Co-authored-by: Peter Bierma <zintensitydev@gmail.com>
* gh-119004: fix a crash in equality testing between `OrderedDict` (#121329)Bénédikt Tran2024-09-231-2/+5
|
* gh-116622: Complete Android documentation (#124259)Malcolm Smith2024-09-2313-88/+106
| | | | | Co-authored-by: Russell Keith-Magee <russell@keith-magee.com> Co-authored-by: T. Wouters <thomas@python.org> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* GH-65961: Document the deprecation of `__package__` and `__cached__` (GH-124377)Brett Cannon2024-09-231-2/+2
| | | The code changes for warning related to `__package__` landed in Python 3.12. `__cached__` doesn't have any changes as it isn't used but only set by the import system.