summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
...
* gh-69998: Fix decoding error in locale.nl_langinfo() (GH-124963)Serhiy Storchaka2024-10-082-0/+15
| | | | | | | The function now sets temporarily the LC_CTYPE locale to the locale of the category that determines the requested value if the locales are different and the resulting string is non-ASCII. This temporary change affects other threads.
* gh-70870: Clarify dual usage of 'free variable' (#122545)Alyssa Coghlan2024-10-088-21/+63
| | | | | | | | | | | | | | 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>
* Docs: make a tutorial example more precise (#125066)Ned Batchelder2024-10-071-11/+9
| | | | | Based on discussion here: https://discuss.python.org/t/omission-in-the-documentation/66816
* gh-125072: Add label for assignment expressions; update tracked section for ↵Emily Morehouse2024-10-072-2/+4
| | | | assignment expression topic (#125074)
* gh-124502: Add PyUnicode_Equal() function (#124504)Victor Stinner2024-10-073-0/+30
|
* gh-124653: Relax (again) detection of queue API for logging handlers ↵Bénédikt Tran2024-10-071-5/+6
| | | | (GH-124897)
* gh-124182: Explain naming rules for struct sequence types (#124335)ffelixg2024-10-071-1/+2
|
* 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-109975: Announce final release in What's New in Python 3.13 (#125007)Adam Turner2024-10-072-3/+3
| | | Prepare What's New in Python 3.13 for final release
* gh-125025: `_thread` docs: fix/update the *caveats* list (GH-125026)Jan Kaliszewski2024-10-061-7/+2
|
* Doc: Simplify the definition of 'soft deprecated' (#124988)Andrés Delfino2024-10-061-9/+5
| | | | | Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Co-authored-by: Sergey B Kirpichev <skirpichev@gmail.com> Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
* Fix console prompt syntax in What's New in Python 3.8 (#124968)Nice Zombies2024-10-041-3/+3
|
* gh-109975: Suggest ``pynntp`` instead of ``nntplib`` (#124830)Christian Clauss2024-10-041-1/+1
| | | The ``nntplib`` library has been deleted from PyPI by its author.
* GH-109975: Copyedit 3.13 What's New: Remove references to the incremental GC ↵Adam Turner2024-10-031-66/+0
| | | | (#124947)
* Simplify partial() rough equivalent code (gh-124941)Raymond Hettinger2024-10-031-2/+1
|
* gh-115145: Update documentation about ``PyThreadState_DeleteCurrent`` ↵Donghee Na2024-10-031-1/+1
| | | | (gh-124920)
* gh-87135: Hang non-main threads that attempt to acquire the GIL during ↵Jeremy Maitin-Shepard2024-10-021-16/+60
| | | | | | | finalization (GH-105805) Instead of surprise crashes and memory corruption, we now hang threads that attempt to re-enter the Python interpreter after Python runtime finalization has started. These are typically daemon threads (our long standing mis-feature) but could also be threads spawned by extension modules that then try to call into Python. This marks the `PyThread_exit_thread` public C API as deprecated as there is no plausible safe way to accomplish that on any supported platform in the face of things like C++ code with finalizers anywhere on a thread's stack. Doing this was the least bad option. Co-authored-by: Gregory P. Smith <greg@krypto.org>
* gh-66436: Improved prog default value for argparse.ArgumentParser (GH-124799)Serhiy Storchaka2024-10-012-9/+39
| | | | | | | | | 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-124487: Updated installer messages and internal docs regarding minimum ↵Wulian2024-10-011-2/+3
| | | | Windows version (GH-124822)
* 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.
* Doc: Fix archive filenames for standard builds (#124826)Adam Turner2024-10-012-3/+9
|
* GH-109975: Copyedit 3.13 What's New: Link to installing free-threaded ↵Adam Turner2024-10-011-4/+1
| | | | binaries on macOS (#124831)
* GH-109975: Copyedit 3.13 What's New: Note delayed expected release date for ↵Adam Turner2024-10-011-1/+1
| | | | | Python 3.13.0 (GH-124827) Note delayed expected release date of 3.13.0
* Doc: Run HTML and non-HTML daily builds separately (#124493)Adam Turner2024-09-301-3/+3
|
* 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>
* gh-124720: Update "Using Python on a Mac" document (#124721)Ned Deily2024-09-2910-110/+361
| | | | | Update "Using Python on a Mac" section of the "Python Setup and Usage" document and include information on installing free-threading support.
* 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.
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in ↵Serhiy Storchaka2024-09-281-1/+4
| | | | | | | | | | | | | classes (GH-123613) * Setting the __module__ attribute for a class now removes the __firstlineno__ item from the type's dict. * The _collections_abc and _pydecimal modules now completely replace the collections.abc and decimal modules after importing them. This allows to get the source of classes and functions defined in these modules. * inspect.findsource() now checks whether the first line number for a class is out of bound.
* 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
* Doc: Fix default ``latex_elements['papersize']`` (#124525)Jean-François B.2024-09-281-2/+2
| | | | | | https://www.sphinx-doc.org/en/master/latex.html#the-latex-elements-configuration-setting It should be 'letterpaper' or 'a4paper' not 'letter' or 'a4' (not to be confused with PAPER env variable).
* Sorting techniques edits (#124701)Raymond Hettinger2024-09-281-3/+70
|
* gh-107954: Fix configuration type for the perf profiler (#124636)Pablo Galindo Salgado2024-09-271-8/+13
|
* gh-124385: Document and soft-deprecate PyLong_AS_LONG (GH-124386)Petr Viktorin2024-09-271-1/+10
|
* gh-123299: Copy-edit the 3.14 What's New (#124670)Jelle Zijlstra2024-09-272-45/+56
| | | | Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
* gh-90190: Add doc for using `singledispatch` with precise collection type ↵Matt Delengowski2024-09-271-0/+19
| | | | | | hints (#116544)
* gh-81263: Add assignment expressions to `help` (#124641)Emily Morehouse2024-09-271-0/+1
| | | | | * Add assignment expression (:=) to `help` * Update index for Assignment Expressions to include pair of `assignment; expression`
* gh-124520: What's New entry for ctypes metaclass __new__/__init__ change ↵Petr Viktorin2024-09-271-0/+18
| | | | (GH-124546)
* doc: PyUnicode_AsUTF8String() fails if string contains surrogates (#124605)Victor Stinner2024-09-271-3/+10
|
* 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.
* gh-121277: Raise nice error on `next` as second argument to ↵Petr Viktorin2024-09-271-0/+3
| | | | deprecated-removed (GH-124623)
* 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.
* GH-95079: document error behaviour for some unicode C APIs (#95080)Max Bachmann2024-09-271-0/+9
|
* Docs: for for/else clarify that return or raise also skip the else (#124591)Ned Batchelder2024-09-271-2/+4
| | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
* Docs: Update and proofread `library/venv.rst` (#124121)Hugo van Kemenade2024-09-262-132/+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>