Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove use of deprecated `array.fromstring` method (GH-17332) | David Coles | 2019-11-26 | 1 | -1/+1 |
| | |||||
* | bpo-38738: Fix formatting of True and False. (GH-17083) | Serhiy Storchaka | 2019-11-12 | 1 | -2/+2 |
| | | | | | | | | | * "Return true/false" is replaced with "Return ``True``/``False``" if the function actually returns a bool. * Fixed formatting of some True and False literals (now in monospace). * Replaced "True/False" with "true/false" if it can be not only bool. * Replaced some 1/0 with True/False if it corresponds the code. * "Returns <bool>" is replaced with "Return <bool>". | ||||
* | bpo-38592 Add pt-br switcher to Python Docs website (GH-16924) | Marco Rougeth | 2019-10-27 | 1 | -0/+1 |
| | | | | * đđ€ Added by blurb_it. | ||||
* | bpo-38557: Improve documentation for list and tuple C API. (GH-16925) | Serhiy Storchaka | 2019-10-26 | 1 | -0/+1 |
| | |||||
* | Update doc switcher list for 3.8.0 (GH-16809) | Ned Deily | 2019-10-15 | 1 | -1/+1 |
| | |||||
* | Doc: 3.8 is now stable. (GH-16790) | Julien Palard | 2019-10-14 | 1 | -1/+1 |
| | |||||
* | bpo-38294: Add list of no-longer-escaped chars to re.escape documentation. â” | Ricardo BĂĄnffy | 2019-10-07 | 1 | -0/+1 |
| | | | | | | | | | (GH-16442) Prior to 3.7, re.escape escaped many characters that don't have special meaning in Python, but that use to require escaping in other tools and languages. This commit aims to make it clear which characters were, but are no longer escaped. | ||||
* | bpo-36675: Remove obsolete code. (GH-16024) | Julien Palard | 2019-09-12 | 1 | -32/+0 |
| | | | | Does no longer work since Sphinx moved the trim_doctest_flag option in the configuration. | ||||
* | bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861) | Anjali Bansal | 2019-09-11 | 1 | -0/+3 |
| | |||||
* | bpo-37504: Fix documentation build with texinfo builder (GH-14606) | Dmitry Shachnev | 2019-09-10 | 1 | -0/+1 |
| | | | | | | | | | In the table model used by docutils, the `cols` attribute of `tgroup` nodes is mandatory, see [1]. It is used in texinfo builder in [2]. [1]: https://www.oasis-open.org/specs/tm9901.htm#AEN348 [2]: https://github.com/sphinx-doc/sphinx/blob/v2.1.2/sphinx/writers/texinfo.py#L1129 * Doc: Add texinfo support to the Makefile | ||||
* | bpo-38086: Sync importlib.metadata with importlib_metadata 0.21. (GH-15840) | Jason R. Coombs | 2019-09-10 | 1 | -1/+1 |
| | | | https://gitlab.com/python-devs/importlib_metadata/-/tags/0.21 | ||||
* | Doc: Fix PDF build (NoUri). (GH-15739) | Julien Palard | 2019-09-09 | 1 | -4/+11 |
| | |||||
* | bpo-36853: Fix suspicious.py to actually print the unused rules (#13579) | Anthony Sottile | 2019-09-02 | 1 | -11/+14 |
| | | | | | | * Fix suspicious.py to actually print the unused rules * Fix the other `self.warn` calls | ||||
* | Bpo-37644: update suspicious.csv for distutils/examples (GH-14885) | Ned Deily | 2019-07-21 | 1 | -1/+1 |
| | |||||
* | Replace backquote with command substitution in subprocess doc example (GH-13941) | David Jones | 2019-07-16 | 1 | -2/+0 |
| | | | Replace backquotes with POSIXy command substitution in example. | ||||
* | bpo-37363: Add audit events on startup for the run commands (GH-14524) | Steve Dower | 2019-07-01 | 1 | -8/+14 |
| | |||||
* | bpo-37390: Add audit event table to documentations (GH-14406) | Steve Dower | 2019-06-27 | 1 | -11/+131 |
| | | | Also updates some (unreleased) event names to be consistent with the others. | ||||
* | bpo-37363: Add audit events for a range of modules (GH-14301) | Steve Dower | 2019-06-24 | 1 | -5/+5 |
| | |||||
* | bpo-37111: Add 'encoding' and 'errors' parameters to logging.basicCon⊠┠| Vinay Sajip | 2019-06-17 | 1 | -0/+2 |
| | | | | (GH-14008) | ||||
* | Doc: Remove an ugly space before a dot. (GH-14123) | Julien Palard | 2019-06-16 | 1 | -1/+1 |
| | |||||
* | Doc: Deprecation header: More precise wording. (GH-14109) | Julien Palard | 2019-06-15 | 1 | -1/+1 |
| | |||||
* | Doc: Python 3.9 in sidebar and version switcher. (GH-13824) | Julien Palard | 2019-06-04 | 2 | -2/+4 |
| | |||||
* | Bump to 3.9.0a0 | Ćukasz Langa | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Python 3.8.0b1v3.8.0b1 | Ćukasz Langa | 2019-06-04 | 1 | -1/+1 |
| | |||||
* | Doc: Add an optional obsolete header. (GH-13638) | Julien Palard | 2019-05-29 | 1 | -0/+10 |
| | |||||
* | bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) â” | Matthias Bussonnier | 2019-05-28 | 1 | -1/+0 |
| | | | | | | | | | | (GH-13577) It has been documented as deprecated and to be removed in 3.8; From a comment on another thread â which I can't find ; leave get_coro_wrapper() for now, but always return `None`. https://bugs.python.org/issue36933 | ||||
* | bpo-35397: Remove deprecation and document urllib.parse.unwrap (GH-11481) | RĂ©mi Lapeyre | 2019-05-27 | 1 | -0/+2 |
| | |||||
* | Fix highlighting in importlib.metadata docs (GH-13575) | Anthony Sottile | 2019-05-26 | 1 | -1/+0 |
| | |||||
* | bpo-34632: Add importlib.metadata (GH-12547) | Jason R. Coombs | 2019-05-24 | 1 | -0/+3 |
| | | | Add importlib.metadata module as forward port of the standalone importlib_metadata. | ||||
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+40 |
| | | | Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs. | ||||
* | bpo-36797: Prune more legacy distutils documentation (GH-13092) | Nick Coghlan | 2019-05-14 | 1 | -1/+1 |
| | | | | | | Removes more legacy distutils documentation, and more clearly marks what is left as potentially outdated, with references to setuptools as a replacement. | ||||
* | Fix sphinx deprecation warning about env.note_versionchange() (GH-13236) | Pablo Galindo | 2019-05-10 | 1 | -1/+1 |
| | |||||
* | Clarify the download unit in the download section (GH-13122) | Stéphane Wirtel | 2019-05-06 | 1 | -2/+1 |
| | |||||
* | bpo-33043: Add a Contributing to Docs link and Update the Found a Bug Page â” | Susan Su | 2019-03-29 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | (#12006) * changes to html file -> added contributing to docs link at the end of the page * revisions to the dealing with bugs page. added more links in the documentation bugs section * đđ€ Added by blurb_it. * Update Doc/bugs.rst Updated Doc/bugs.rst in accordance with willingc and JulienPalard suggestions. Co-Authored-By: suhearsawho <susansu.software@gmail.com> | ||||
* | bpo-36425: Add Simplified Chinese to the language switcher (GH-12537) | zhsj | 2019-03-28 | 1 | -0/+1 |
| | |||||
* | bpo-30670: Add pp function to the pprint module (GH-11769) | RĂ©mi Lapeyre | 2019-03-22 | 1 | -9/+9 |
| | |||||
* | Document actual string.punctuation value. (GH-12270) | Andre Delfino | 2019-03-14 | 1 | -0/+1 |
| | |||||
* | Doc sidebar: 3.6 has moved to security-fix mode. (GH-11810) | Julien Palard | 2019-02-10 | 1 | -1/+1 |
| | |||||
* | bpo-18085: Update refcounts.dat. (GH-11247) | Serhiy Storchaka | 2018-12-20 | 1 | -1/+1 |
| | | | | | Fixed some errors in refcounts.dat, remove functions removed in Python 3, and add more entries for documented functions. This will add several automatically generated notes about return values. | ||||
* | bpo-35482: Fixes HTML escaping in CHM index and build location of NEWS file â” | Steve Dower | 2018-12-20 | 2 | -3/+23 |
| | | | | (GH-11224) | ||||
* | bpo-31146: Don't fallback switcher to english on not-yet pusblished â” | Julien Palard | 2018-11-20 | 1 | -0/+6 |
| | | | | languages. (GH-10558) | ||||
* | bpo-32613: Update window FAQ (GH-5552) | Julien Palard | 2018-11-14 | 1 | -1/+1 |
| | |||||
* | Doc: Make all versions sidebars the same for consistency. (GH-10288) | Julien Palard | 2018-11-07 | 1 | -2/+3 |
| | |||||
* | bpo-35015: Doc: Fix internationalisation of the availability directive. â” | Julien Palard | 2018-11-07 | 1 | -3/+4 |
| | | | | (GH-10360) | ||||
* | bpo-35159: Add a link to the devguide in the sidebar of the index (Doc/) ┠| Stéphane Wirtel | 2018-11-04 | 1 | -0/+1 |
| | | | | (GH-10316) | ||||
* | bpo-35075: Fix broken url in the pprint documentation (GH-10201) | Pablo Galindo | 2018-11-01 | 1 | -1/+9 |
| | | | https://bugs.python.org/issue35075 | ||||
* | bpo-35036: Remove empty log line in the suspicious.py tool (GH-10024) | Xtreak | 2018-10-21 | 1 | -1/+0 |
| | | | | Previous to commit ee171a2 the logline was working because of self.info() (now deprecated) defaults to an empty message. | ||||
* | Stop using deprecated logging API in Sphinx suspicious checker (GH-9875) | Pablo Galindo | 2018-10-15 | 1 | -4/+6 |
| | |||||
* | bpo-34967: Sphinx is deprecating add_description_unit, use add_object_type ┠| Stéphane Wirtel | 2018-10-13 | 1 | -5/+3 |
| | | | | (GH-9827) | ||||
* | bpo-11233: Create availability directive for documentation (GH-9692) | Cheryl Sabella | 2018-10-12 | 2 | -11/+32 |
| | | | | | | Replace "Availability: xxx" with ".. availability:: xxx" in the doc. Original patch by Georg Brandl. Co-Authored-By: Georg Brandl <georg@python.org> |