summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.2.rst
Commit message (Collapse)AuthorAgeFilesLines
* gh-107298: Fix numerous ref errors and typos in the C API docs (GH-108258)Serhiy Storchaka2023-08-221-7/+7
|
* gh-107298: Fix some references in the C API documentation (GH-108072)Serhiy Storchaka2023-08-171-1/+1
|
* gh-107091: Fix some uses of :c:type: role (GH-107138)Serhiy Storchaka2023-07-261-1/+1
|
* gh-106909: Use role :const: for referencing module constants (GH-106910)Serhiy Storchaka2023-07-211-3/+3
|
* gh-106892: Use roles :data: and :const: for referencing module variables ↵Serhiy Storchaka2023-07-211-16/+16
| | | | (GH-106894)
* gh-104773: PEP 594: Remove the nntplib module (#104894)Victor Stinner2023-05-241-4/+4
| | | | | | | | * socket_helper.transient_internet() no longer imports nntplib to catch nntplib.NNTPTemporaryError. * ssltests.py no longer runs test_nntplib. * "make quicktest" no longer runs test_nntplib. * WASM: remove nntplib from OMIT_NETWORKING_FILES. * Remove mentions to nntplib in the email documentation.
* GH-98040: Suppress cross-references to the removed ``imp`` module (#104131)Adam Turner2023-05-031-2/+2
| | | Suppress cross-references to imp
* GH-103484: Fix redirected permanently URLs (#104001)Rafael Fontenelle2023-05-021-3/+3
| | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com> Co-authored-by: Oleg Iarygin <dralife@yandex.ru>
* gh-99087: Add missing newline for prompts in docs (GH-98993)Stanley2022-12-091-0/+3
| | | Add newline for prompts so copying to REPL does not cause errors.
* Docs: Fix backtick errors found by sphinx-lint (#97998)Hugo van Kemenade2022-10-071-2/+2
| | | Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com>
* gh-96959: Update more HTTP links (GH-97536)Serhiy Storchaka2022-09-271-3/+3
| | | | 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-91838: Use HTTPS links in docs for resources which redirect to HTTPS ↵Serhiy Storchaka2022-08-041-1/+1
| | | | | | | | | | (GH-95527) If an HTTP link is redirected to a same looking HTTPS link, the latter can be used directly without changes in readability and behavior. It protects from a men-in-the-middle attack. This change does not affect Python examples.
* Doctest cleanups (GH-95436)Zachary Ware2022-07-301-2/+2
| | | | | | | | | | | | | * GHA: Don't hide doctest output * Enable doctests in math.rst * Squash warnings in nntplib.rst doctests * Squash warning in turtle.rst doctest * Squash warnings in whatsnew/3.2.rst doctests * Treat warnings as errors in Doc/ doctests
* gh-85454: Remove links from historical mentions of distutils (GH-95192)Oleg Iarygin2022-07-251-1/+1
|
* Revert "bpo-45162: Revert "Remove many old deprecated unittest features"" ↵Serhiy Storchaka2022-06-261-2/+1
| | | | | | (GH-92556) This reverts commit b50322d20337ca468f2070eedb051a16ee1eba94.
* gh-86404: [doc] Fix missing backtick and double target name. (#94120)Julien Palard2022-06-231-2/+2
|
* gh-93851: Fix all broken links in Doc/ (GH-93853)Oleg Iarygin2022-06-211-3/+5
|
* gh-92240 : Include release dates for "What's New In Python 3.X" (#92937)georgically2022-05-291-1/+2
| | | | Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
* gh-87670: Add web.archive redirects from effbot (GH-92816)Stanley2022-05-161-1/+2
|
* bpo-45162: Revert "Remove many old deprecated unittest features" (GH-30935)Gregory P. Smith2022-01-271-1/+2
| | | | | | | | | | Revert "bpo-45162: Remove many old deprecated unittest features (GH-28268)" This reverts commit b0a6ede3d0bd6fa4ffe413ab4dfc1059201df25b. We're deferring this change until 3.12 while upstream projects that use the legacy assertion method names are fixed. See the issue for links to the discussion. Many upstream projects now have issues and PRs filed.
* bpo-45162: Remove many old deprecated unittest features (GH-28268)Serhiy Storchaka2021-09-171-2/+1
| | | | | | | * "fail*" and "assert*" aliases of TestCase methods. * Broken from start TestCase method assertDictContainsSubset(). * Ignored TestLoader.loadTestsFromModule() parameter use_load_tests. * Old alias _TextTestResult of TextTestResult.
* bpo-44740: Lowercase "internet" and "web" where appropriate. (#27378)Mariusz Felisiak2021-07-261-1/+1
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* Revert "Fix all Python Cookbook links (#22205)" (GH-22424)Andre Delfino2020-09-271-2/+2
| | | This commit reverts commit ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b as the original links are working again and they provide extended features such as comments and alternative versions.
* Fix all Python Cookbook links (#22205)Andre Delfino2020-09-151-2/+2
|
* bpo-40204: Fix reference to terms in the doc (GH-21865)Victor Stinner2020-08-141-1/+1
| | | | | | | | Sphinx 3 requires to refer to terms with the exact case. For example, fix the Sphinx 3 warning: Doc/library/pkgutil.rst:71: WARNING: term Loader not found in case sensitive match.made a reference to loader instead.
* Docs: FIX broken links. (GH-13491)Julien Palard2019-05-251-7/+9
|
* bpo-25910: Link redirections in docs (#1933)Sanyam Khurana2018-01-201-1/+1
| | | Fixes some redirection links in docs.
* bpo-27200: Fix several doctests (GH-604)Marco Buttu2017-04-271-8/+11
|
* Issue #19795: Mark up True and False as literal text instead of bold.Serhiy Storchaka2016-10-191-4/+4
|\
| * Issue #19795: Mark up True and False as literal text instead of bold.Serhiy Storchaka2016-10-191-4/+4
| |
* | Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-2/+2
|\ \ | |/
| * Issue #19795: Mark up None as literal text.Serhiy Storchaka2016-10-191-2/+2
| |
* | Closes #27904: Improved logging statements to defer formatting until needed.Vinay Sajip2016-08-311-2/+2
|/
* Issue #27207: Fix doctests in Doc/whatsnew/3.2.rstZachary Ware2016-08-101-18/+31
| | | | Initial patch by Jelle Zijlstra.
* Issue #26462: Doc: reduce literal_block warnings, fix syntax highlighting.Martin Panter2016-07-261-9/+26
| | | | Patch by Julien Palard.
* Issue #27430: Fix typos, patch by scop.Berker Peksag2016-07-011-1/+1
|
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-84/+86
| | | | Original patch by James Edwards.
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-5/+5
|
* Issue #25910: Fixed more links in the docs.Serhiy Storchaka2016-04-111-1/+1
|
* Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵Georg Brandl2016-02-261-11/+11
| | | | to SilentGhost for the patch.
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-2/+2
| | | | | | This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar.
* Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-291-2/+2
|
* Use https:// URLs when referring to python.org hosts.Georg Brandl2014-10-291-6/+6
|
* Issue #22369: Change "context manager protocol" to "context management ↵Serhiy Storchaka2014-09-101-3/+3
| | | | protocol".
* Removed spaces before commas and periods.Serhiy Storchaka2013-12-231-1/+1
|
* - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-211-2/+2
|\ | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
| * - Issue #16754: Fix the incorrect shared library extension on linux. Introducedoko@ubuntu.com2013-03-211-2/+2
| | | | | | | | | | two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
* | #16157: fix links in the whatsnew files.Ezio Melotti2012-11-171-1/+1
| |
* | Remove confusing "Release" and "Date" markers from whatsnews. Merge with 3.2.Georg Brandl2012-10-281-2/+0
|\ \ | |/
| * Remove confusing "Release" and "Date" markers from whatsnews.Georg Brandl2012-10-281-2/+0
| |