summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.4.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-101100: Fix Sphinx warnings for removed dead batteries (#113669)Hugo van Kemenade2024-01-031-3/+3
| | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-101100: Fix Sphinx warnings from removed `~!` references (#113629)Hugo van Kemenade2024-01-021-7/+7
| | | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-101100: Fix Sphinx warning in references with asterisks (#113029)Hugo van Kemenade2023-12-131-1/+1
| | | Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* gh-101100: Improve documentation on function attributes (#112933)Alex Waygood2023-12-111-2/+2
| | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
* gh-109634: Use :samp: role (GH-109635)Serhiy Storchaka2023-09-231-1/+1
|
* gh-107298: Fix a few more refs in the C API docs (GH-108361)Serhiy Storchaka2023-08-231-1/+1
| | | gh-107298: Fix few more refs in the C API docs
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-9/+9
|
* gh-106892: Use roles :data: and :const: for referencing module variables ↵Serhiy Storchaka2023-07-211-7/+7
| | | | (GH-106894)
* gh-104773: PEP 594: Remove the audioop module (#104937)Victor Stinner2023-05-251-4/+4
|
* gh-104773: PEP 594: Remove the aifc module (#104933)Victor Stinner2023-05-251-4/+4
| | | | * Remove .aifc and .aiff test files of Lib/test/audiodata/ * Remove Lib/test/Sine-1000Hz-300ms.aif test file
* gh-104773: PEP 594: Remove the sunau module (#104863)Victor Stinner2023-05-241-4/+4
| | | | * Remove Lib/test/audiodata/pluck-*.au files. * Remove Lib/test/audiotest.au file.
* gh-104773: PEP 594: Remove cgi and cgitb modules (#104775)Victor Stinner2023-05-241-4/+4
| | | | | * Replace "cgi" with "!cgi" in the Sphinx documentation to avoid warnings on broken references. * test_pyclbr no longer tests the cgi module.
* GH-97850: Suppress cross-references to removed ``importlib.util`` functions ↵Adam Turner2023-05-031-3/+3
| | | | | | | | | (#104134) `importlib.utils` -> `importlib.util` in a few places --------- Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
* GH-97850: Suppress cross-references to the removed ``module_repr`` method ↵Adam Turner2023-05-031-1/+1
| | | | | (#104133) Suppress cross-references to ``module_repr``
* GH-98040: Suppress cross-references to the removed ``imp`` module (#104131)Adam Turner2023-05-031-6/+6
| | | Suppress cross-references to imp
* gh-98040: Remove find_loader, find_module and other deprecated APIs (#98059)Barry Warsaw2023-05-031-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Remove deprecated classes from pkgutil * Remove some other PEP 302 obsolescence * Use find_spec instead of load_module * Remove more tests of PEP 302 obsolete APIs * Remove another bunch of tests using obsolete load_modules() * Remove deleted names from __all__ * Remove obsolete footnote * imp is removed * Remove `imp` from generated stdlib names * What's new and blurb * Update zipimport documentation for the removed methods * Fix some Windows tests * Remove any test (or part of a test) that references `find_module()`. * Use assertIsNone() / assertIsNotNone() consistently. * Update Doc/reference/import.rst * We don't need pkgutil._get_spec() any more either * test.test_importlib.fixtures.NullFinder * ...BadLoaderFinder.find_module * ...test_api.InvalidatingNullFinder.find_module * ...test.test_zipimport test of z.find_module * Suppress cross-references to find_loader and find_module * Suppress cross-references to Finder * Suppress cross-references to pkgutil.ImpImporter and pkgutil.ImpLoader --------- Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net> Co-authored-by: Adam Turner <9087854+aa-turner@users.noreply.github.com>
* gh-96959: Update more HTTP links (GH-97536)Serhiy Storchaka2022-09-271-1/+1
| | | | Use HTTPS for documents which are available by both HTTP and HTTPS links, but there is no redirection from HTTP to HTTPS or vice versa.
* gh-85454: Remove distutils documentation (#95239)Christian Heimes2022-07-251-1/+1
| | | | Most places now refer to setuptools or link to setuptools documentation. Some examples like zipapp need to be updated later.
* Docs: remove redundant "adverb-adjective" hyphens from compound modifiers ↵Ned Batchelder2022-07-051-2/+2
| | | | | (GH-94551) Discussion: https://discuss.python.org/t/slight-grammar-fix-throughout-adverbs-dont-need-hyphen/17021
* gh-71223: Improve rendering of some references in the docs (GH-93041)Serhiy Storchaka2022-05-211-3/+3
| | | | For example, instead of "eval()uated" (link from "eval()") show "evaluated" (link from the whole word).
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-1/+1
|
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* bpo-38600: NULL -> ``NULL``. (GH-17001)Serhiy Storchaka2019-10-301-1/+1
| | | Also fix some other formatting.
* bpo-38600: Change the mark up of NULL in the C API documentation. (GH-16950)Serhiy Storchaka2019-10-301-1/+1
| | | | Replace all *NULL* with ``NULL``.
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895)Raymond Hettinger2019-09-111-1/+1
| | | | | | | | * bpo-38096: Clean up the "struct sequence" / "named tuple" docs * Fix remaining occurrences of "struct sequence" * Repair a user visible docstring
* bpo-35506: Remove redundant and incorrect links from keywords. (GH-11174)Serhiy Storchaka2018-12-191-1/+1
|
* bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231)Serhiy Storchaka2018-10-311-4/+4
|
* bpo-30737: Update DevGuide links to new URL (GH-3228)Lisa Hewus Fresh2017-08-301-2/+2
| | | Update old devguide links from https://docs.python.org/devguide to https://devguide.python.org
* Issue #19795: Fixed markup errors.Serhiy Storchaka2016-10-191-1/+1
|\
| * Issue #19795: Fixed markup errors.Serhiy Storchaka2016-10-191-1/+1
| |
* | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
|\ \ | |/
| * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-1/+1
| |
* | #24277: Fix 3.4 whats new link broken by email doc changes.R David Murray2016-09-081-1/+1
| |
* | Issue #27285: Cleanup "suspicious" warnings.Ned Deily2016-07-111-4/+4
|/
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-301-1/+1
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-1/+1
| | | | Original patch by James Edwards.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-1/+1
|
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-4/+4
| | | | to SilentGhost for the patch.
* Fix some spelling errors in documentation and code commentsMartin Panter2015-10-311-1/+1
|
* Use :menuselection: in whatsnew/3.4.Serhiy Storchaka2015-09-131-1/+1
|
* remove stray '(' (closes #24547)Benjamin Peterson2015-07-021-1/+1
|
* whitespaceTerry Jan Reedy2015-05-231-1/+1
|
* Add pointer to IDLE what's new file.Terry Jan Reedy2015-05-231-0/+10
|
* PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-0/+29
| | | | Patch by Alex Gaynor with some modifications by me.
* Issue #22388: Unified the style of "Contributed by" sentences in What's New.Serhiy Storchaka2014-11-021-56/+56
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-5/+5
|
* Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-101-3/+3
| | | | protocol".
* TypoJesus Cea2014-03-171-1/+1
|
* TypoJesus Cea2014-03-171-1/+1
|